We successfully launch an application based on Spring 3.2.1.RELEASE and Spring Security 3.1.3.RELEASE. We had no particular problems setting up.
Unfortunately, I do not have a source that shows that this is officially supported.
If you use Maven in your project, you should force versions to avoid using the same jars with multiple versions in your class path:
<properties> <spring.version>3.2.1.RELEASE</spring.version> <spring-security.version>3.1.3.RELEASE</spring-security.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> <version>${spring.version}</version> </dependency> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <version>${spring-security.version}</version> </dependency> </dependencies> </dependencyManagement>
source share