繁体   English   中英

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'

嗨,我正在尝试通过遵循本教程http://www.baeldung.com/2011/10/31/securing-a-restful-web-service-with-spring-security-3-1在我的项目中实现Spring Security -part-3 /#config ,运行程序时出现以下异常-

org.springframework.beans.factory.BeanCreationException:创建名称为“ org.springframework.security.filterChains”的bean时出错:bean的初始化失败; 嵌套异常为java.lang.NoSuchFieldError:org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:532)为NULL

我的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的重复:创建名称为'org.springframework.security.filterChains'的bean时出错 ,但是我尝试了无济于事的解决方案,这可能是因为我仍然是春天的新手。 非常感谢您的帮助。

我正在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();
    }

}

查看stacktrace信息,就好像您的类路径中有冲突的框架jar。 当使用maven时,请使用mvn dependency:tree找出要使用的依赖项,我怀疑您的类路径中存在较旧的spring-beans.jar。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM