我正在使用旧版Spring应用程序,并且想要迁移到Spring Boot。我的意图是使用spring-boot-starter-data-jpa。因此,我在pom.xml(管理所有spring-boot-dependencies)中添加了以下部分:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.3.RELEASE</version>
</parent>
但这搞砸了我需要暂时保留的某些依赖项。我目前正在使用Selenium依赖项(版本2.53.0;从另一个项目中过渡添加),但是spring-boot正在获取的依赖项3.9.1。
我想排除3.9.1依赖关系,但exclusion过滤器无法按预期工作。
只是为了总结,我想用spring-boot-starter-parent和spring-boot-starter-data-jpa而不是管理selenium-java的spring-boot-dependencies。
感谢这方面的帮助。
杨__羊羊
慕姐4208626
相关分类