I build a Project with Spring Framework 3.2.1 and Spring Security 3.1.3 and had much problems.
I read that since Spring Framework 3.2.0 the asm is integrated in the package.
But after I removed the asm from the security package it worked.
A real convenient method with Maven
Code:
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>3.1.3.RELEASE</version>
<exclusions>
<exclusion>
<artifactId>spring-asm</artifactId>
<groupId>org.springframework</groupId>
</exclusion>
</exclusions>
</dependency>
Perhaps can someone told me, if this is a good solution or can this have disadvantages what yet is not to observe.