Spring Boot与Websphere传统型8.5.5 jaxb冲突问题可以通过以下步骤解决:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</exclusion>
</exclusions>
</dependency>
这样可以排除掉Spring Boot中的jaxb依赖,避免与Websphere中的jaxb冲突。
<dependency>
<groupId>com.ibm.websphere</groupId>
<artifactId>com.ibm.websphere.appserver.api.jaxrs20</artifactId>
<version>8.5.5</version>
<scope>provided</scope>
</dependency>
这样可以使用Websphere提供的jaxb库,避免与Websphere中的jaxb冲突。
通过以上步骤,可以解决Spring Boot与Websphere传统型8.5.5 jaxb冲突问题。在解决冲突后,可以正常运行Spring Boot应用程序并与Websphere进行集成。
领取专属 10元无门槛券
手把手带您无忧上云