Affects: \
Comment From: wuaoya
Where can I check the version comparison of spring framework corresponding to spring boot,thank you.
Comment From: magJ
@wuaoya There are a few ways to see which version of spring, a given version of spring-boot depends on. One way is to use a website like mvnrepository.com, which lets you search and view maven dependency metadata.
Click on your version of spring-boot: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot
Then on the artifact page, look at the version of spring-core referenced in the compile dependencies
https://mvnrepository.com/artifact/org.springframework.boot/spring-boot/2.6.5
Comment From: bclozel
All dependencies are listed in the reference documentation of each Spring Boot release.
Here is the latest one: https://docs.spring.io/spring-boot/docs/current/reference/html/dependency-versions.html#appendix.dependency-versions
Comment From: wuaoya
@wuaoya There are a few ways to see which version of spring, a given version of spring-boot depends on. One way is to use a website like mvnrepository.com, which lets you search and view maven dependency metadata.
Click on your version of spring-boot: https://mvnrepository.com/artifact/org.springframework.boot/spring-boot Then on the artifact page, look at the version of spring-core referenced in the compile dependencies https://mvnrepository.com/artifact/org.springframework.boot/spring-boot/2.6.5
thank you so much.