首页 文章

Spring security- org.springframework.beans.factory.BeanCreationException:创建名为'org.springframework.security.filterChains'的bean时出错

提问于
浏览
0

嗨我正在尝试按照本教程http://www.baeldung.com/2011/10/31/securing-a-restful-web-service-with-spring-security-3-1-part-3/#config在我的项目中实现spring security,我在运行程序时遇到异常 -

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'的副本,但我尝试了解决方案但没有用,这可能是因为我仍然是 spring 的新手 . 任何帮助都非常感谢 .

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

}

1 回答

  • 0

    查看堆栈跟踪信息,看起来好像您的类路径中存在冲突的框架jar . 当使用maven使用 mvn dependency:tree 来确定使用哪些依赖项时,我怀疑你的类路径中有一个较旧的spring-beans.jar .

相关问题