我正在使用spring and spring-security开始一个新项目。
现在这是我的POM的dependencyManagement部分:
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>4.2.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-bom</artifactId>
<version>4.0.2.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Spring安全文档声明:
Spring Security针对Spring Framework 4.1.6.RELEASE构建,但应该与4.0.x一起使用。
所以我的问题是,有没有人知道我是否可以混合这些版本的spring或者我是否更好地将spring-framework降级为4.1.6.RELEASE?