SpringFox version compatibility with spring boot and Jersey - spring-boot

Configuring Swagger UI for a Jerysey + Spring boot application is complicated due to common dependencies.
Is there any documentation, that provides version compatibility of SpringFox with versions of SpringBoot + Jersey?

Related

Springfox and Springboot compatibility

Which version of springfox is compatible with springboot 3.0.2
I have trying to incorporate springfox 3 into springboot 3. Although my console shows no error, the swagger ui is not appearing. But as i changed my springboot version to 2.7.8, swagger is working. So i want to know which version of springfox swagger will be compatible with springboot 3.0.2, as my project requires that version of spring boot

Spring Tool Suite 3.9.1, does not allow choosing Apache Camel

In the New Spring Starter Dependencies, for Version 2.0.1, (STS 3.9.1), Apache Camel is not available to including as a dependency. Is this not supported or am I missing any configuration?
Figured out that Camel currently supports Spring Boot 1.5, and not Spring Boot 2.0.. as per the release notes here

Does Springfox 2.7.0 supports Spring 3.1.0

Currently my application is running in spring 3.1.0. I have planned to implement swagger in it. Please advise me which springfox runs in spring 3.1.0

Compatibility of Spring, Spring Security and Spring Webflow

Is there a compatibility matrix for spring, spring security and spring webflow for recent releases resp. versions running under Java 7 and JSF 2.2? Or are simply all versions > some threshold compatible?
you can check on maven here and check the compile dependencies of the versions.
for example you can see that WebFlow 2.4.4 is compatible with Spring Security 4.1.0.RELEASE and Spring 4.3.0.RELEASE which is then compatible with jsf 2.2 (through spring-web)

Spring boot, Spring core dependency

I run spring boot 1.3.3.RELEASE, I have run into this issue that are solved in spring 4.3 https://jira.spring.io/browse/SPR-14114
When does spring boot support spring 4.3 ? Can I upgrade my spring-core dependency in current version of spring boot that I have.
When does spring boot support spring 4.3 ?
Spring Boot 1.4 will use Spring Framework 4.3 by default.
Can I upgrade my spring-core dependency in current version of spring boot that I have.
Yes. Spring Boot 1.3.x uses Spring Framework 4.2.x by default but it is compatible with Spring Framework 4.3.x. Assuming that you are using Maven and spring-boot-starter-parent as your pom's parent, you can use the spring.version property to control the version of Spring Framework that's used. For example:
<properties>
<spring.version>4.3.0.RC1</spring.version>
</properties>

Resources