1

私はこのクラスを持っています

@Service("customUserDetailsService")
@Transactional(readOnly=true)
public class CustomUserDetailsService implements UserDetailsService { ....}

そして、私はこれを機能させようとしています

セキュリティ XML

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd">

    <context:annotation-config />
    <context:component-scan base-package="com.carlosocortina.paidosSimple,com.carlosocortina.paidosSimple.dao,com.carlosocortina.paidosSimple.service"/>

    <http auto-config="true" use-expressions="true">
        <intercept-url pattern="/sec/moderation.html" access="ROLE_ASISTENTE" />  
        <intercept-url pattern="/admin/*" access="ROLE_DOCTOR" />   
        <form-login login-page="/user-login.html" 
            default-target-url="/success-login.html" 
            authentication-failure-url="/error-login.html" />  
        <logout logout-success-url="/index.html" />
    </http>  

    <authentication-manager alias="authenticationManager">  
        <authentication-provider user-service-ref="customUserDetailsService" />
    </authentication-manager>  

</beans:beans>  

しかし、私はこのエラーを受け取り続けます:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.filterChains': Cannot resolve reference to bean 'org.springframework.security.web.DefaultSecurityFilterChain#0' while setting bean property 'sourceList' with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.web.DefaultSecurityFilterChain#0': Cannot resolve reference to bean 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0' while setting constructor argument with key [2]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#0': Cannot resolve reference to bean 'org.springframework.security.authentication.ProviderManager#0' while setting bean property 'authenticationManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.authentication.ProviderManager#0': Cannot resolve reference to bean 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0' while setting constructor argument; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.config.authentication.AuthenticationManagerFactoryBean#0': FactoryBean threw exception on object creation; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.authenticationManager': Cannot resolve reference to bean 'org.springframework.security.authentication.dao.DaoAuthenticationProvider#0' while setting constructor argument with key [0]; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.security.authentication.dao.DaoAuthenticationProvider#0': Cannot resolve reference to bean 'customUserDetailsService' while setting bean property 'userDetailsService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'customUserDetailsService' is defined

つまり、「customUserDetailsS​​ervice」という名前の Bean は定義されていません

理由がわからないので、誰かアドバイスをください。

追加情報

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

    <!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/root-context.xml,/WEB-INF/spring/spring-security.xml</param-value>
    </context-param>
    <!-- Creates the Spring Container shared by all Servlets and Filters -->
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

    <!-- Spring Security Configuration -->
    <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>

    <!-- Processes application requests -->
    <servlet>
        <servlet-name>appServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>appServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>

</web-app>
4

3 に答える 3

1

@Configurableサービスに追加してみてください

于 2013-08-05T22:30:07.487 に答える
1

CustomUserDetailsS​​ervice のパッケージがコンポーネント スキャン宣言と一致しなかったと思われます:

<context:component-scan base-package="com.carlosocortina.paidosSimple,com.carlosocortina.paidosSimple.dao,com.carlosocortina.paidosSimple.service"/>

または、@Service("customUserDetailsService")構文が Bean ID を設定せず、代わりに Bean 名を設定している可能性があります。

これらの両方が原因でない場合、Spring はまだスキャンされていない Bean を参照できない可能性があります (この場合は少し悲しいことです)。

@Service別の方法として、 CustomUserDetailsS​​ervice からアノテーションを外して、xml で手動で Bean を宣言することもできます。

<bean id="customUserDetailsService" class="...">
于 2013-08-05T23:24:23.260 に答える
0

これは、servlet-context.xmlがディスパッチャ サーブレット内に配置されているためです。ディスパッチャーサーブレットは親コンテキストの子であるため、親コンテキストには子の依存関係がありません。したがって、内部パラメーターを配置し、servlet-context.xml内部contextパラメーターを持たなければならない場合、appServlet-servlet.xml正常initに動作します。

于 2013-12-24T12:47:53.150 に答える