我尝试使用Spring 4以声明方式配置Spring安全性。我创建了文件applicationContext-security.xml,如下图所示
当我运行应用程序时,我仍然遇到与
相同的错误Failed to instantiate [org.springframework.security.config.SecurityNamespaceHandler]: Constructor threw exception. Check Error Log for more details.
有人已经遇到过这个问题吗?你能帮我修一下这个问题吗?提前谢谢。
答案 0 :(得分:0)
也许你添加了多个版本的spring secuirty检查你的依赖项,我遇到了这个问题,我通过删除其他依赖项来解决它。
答案 1 :(得分:-1)
缺少spring-aop
jar。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>4.3.5.RELEASE</version>
</dependency>