Spring security-org.springframework.beans.factory.BeanCreationException:创建名为“org.springframework.sec
Posted
技术标签:
【中文标题】Spring security-org.springframework.beans.factory.BeanCreationException:创建名为“org.springframework.security.filterChains”的bean时出错【英文标题】:Spring security- org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.filterChains' 【发布时间】:2013-08-28 12:41:39 【问题描述】:您好,我正在尝试按照本教程 http://www.baeldung.com/2011/10/31/securing-a-restful-web-service-with-spring-security-3-1-part-3/#config 在我的项目中实现 spring 安全性,我在运行我的程序时遇到了以下异常-
org.springframework.beans.factory.BeanCreationException: 错误 创建名为“org.springframework.security.filterChains”的bean: bean初始化失败;嵌套异常是 java.lang.NoSuchFieldError: NULL 在 org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:532)
我的 web.xml 看起来像-
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
xsi:schemaLocation="
http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>Spring MVC Application</display-name>
<!-- Spring root -->
<context-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>org.baeldung.spring</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- Spring child -->
<servlet>
<servlet-name>api</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>api</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
<!-- Spring Security -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- <welcome-file-list> -->
<!-- <welcome-file>index.html</welcome-file> -->
<!-- </welcome-file-list> -->
</web-app>
我的 webSecurityConfig.xml 看起来像-
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd">
<http use-expressions="true" entry-point-ref="restAuthenticationEntryPoint">
<intercept-url pattern="/api/**" access="isAuthenticated()" />
<sec:form-login authentication-success-handler-ref="mySuccessHandler" />
<logout />
</http>
<beans:bean id="mySuccessHandler" class="org.baeldung.security.MySavedRequestAwareAuthenticationSuccessHandler" />
<authentication-manager alias="authenticationManager">
<authentication-provider>
<user-service>
<user name="temporary" password="temporary" authorities="ROLE_ADMIN" />
<user name="user" password="userPass" authorities="ROLE_USER" />
</user-service>
</authentication-provider>
</authentication-manager>
我知道这可能与org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.filterChains' 重复,但我尝试了该解决方案但无济于事,这可能是因为我仍然是弹簧新手。非常感谢任何帮助。
我正在从 org.baeldung.spring 框架中的 SecSecurityConfig.java 加载 websecurityconfig.xml,它看起来像-
package org.baeldung.spring;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.ImportResource;
@Configuration
@ImportResource( "classpath:webSecurityConfig.xml" )
@ComponentScan("org.baeldung.security")
public class SecSecurityConfig
public SecSecurityConfig()
super();
【问题讨论】:
你能显示/发布你在哪里加载 webSecurityConfig.xml 文件吗?从目前的信息来看,它没有被加载。 【参考方案1】:查看堆栈跟踪信息,就好像您的类路径中有冲突的框架 jar。当使用 maven 使用 mvn dependency:tree
来确定使用了哪些依赖项时,我怀疑您的类路径中有一个较旧的 spring-beans.jar。
【讨论】:
以上是关于Spring security-org.springframework.beans.factory.BeanCreationException:创建名为“org.springframework.sec的主要内容,如果未能解决你的问题,请参考以下文章
Spring全家桶笔记:Spring+Spring Boot+Spring Cloud+Spring MVC
学习笔记——Spring简介;Spring搭建步骤;Spring的特性;Spring中getBean三种方式;Spring中的标签
Spring框架--Spring事务管理和Spring事务传播行为