0

Spring と Spring Security の使用にはかなり慣れていますが、ここで依存性注入が機能しない理由がわかりません。ユーザー用と 2 人の管理者用の 2 つの基本認証システムを備えたアプリケーションがあります。これは security-context.xml です。

<http use-expressions="true">
    <intercept-url pattern="/" access="isAuthenticated()" />
    <intercept-url pattern="/*" access="isAuthenticated()" />
    <intercept-url pattern="/admin" access="hasRole('ROLE_ADMIN')" />
    <intercept-url pattern="/admin/*" access="hasRole('ROLE_ADMIN')" />
    <http-basic />
</http>

<beans:bean id="userDetailsServiceImpl"
    class="com.foo.bar.service.LoginServiceImpl" />

<authentication-manager>
    <authentication-provider user-service-ref="userDetailsServiceImpl" />
    <authentication-provider>
        <password-encoder hash="md5" />
        <user-service>
            <user name="AdminOne" password="eh223rh2efi9hfuwefugwg"
                authorities="ROLE_ADMIN" />
            <user name="AdminTwo" password="wdkjbcfwerjkbiwfviwefi"
                authorities="ROLE_ADMIN" />
        </user-service>
    </authentication-provider>
</authentication-manager>

ユーザー認証は、UserDetailsS​​ervice の次の実装に依存しています。

public class LoginServiceImpl implements UserDetailsService {

@Autowired
UserDetailsDAO dao;

public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException, DataAccessException {

    try {
        // Get the credentials
        return credentials;
    } catch (NoResultException exc) {

        throw new UsernameNotFoundException("username not found");
    } catch (JDBCException jdbce) {
        throw new DataAccessException("Cannot acess db", jdbce) {
            private static final long serialVersionUID = 1L;
        };
    }
}

問題は、フィールドUserDetailsDAOが null であることです。だから注射しない。奇妙なことに、テスト環境ではすべてが正常に機能します。また、サーバーの起動中に例外がスローされません。これは、通常、自動配線でエラーが報告されるため、これも奇妙です。ところで、管理者の認証は魔法のように機能します。

役立つ場合、これは web.xml です: foo

<servlet>
    <servlet-name>Foo Dispatcher Servlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>
        <!-- Here the context specific for a single project -->
        /WEB-INF/spring/root-context.xml
                /WEB-INF/spring/datasource-context.xml
        </param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>StreamViewer Dispatcher Servlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>
    <!-- Here the context for all the projects -->
        /WEB-INF/spring/security-context.xml
    </param-value>
</context-param>

<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>
4

2 に答える 2

1

注釈付きフィールドの値を設定するAutowiredAnnotationBeanPostProcessorを有効にする必要が<context:annotation-config />あります。security-context.xml@Autowired

ドキュメントから:

デフォルトのAutowiredAnnotationBeanPostProcessorは、「context:annotation-config」および「context:component-scan」XMLタグによって登録されます。カスタムのAutowiredAnnotationBeanPostProcessorBean定義を指定する場合は、デフォルトの注釈構成を削除するか、オフにします。

context:annotation-configは@AutoWiredの代わりになりますか?を参照してください。

于 2012-11-21T22:27:30.107 に答える
0

自動配線を使用する場合は、xml ファイルで明示的に宣言するのではなく、Bean をスキャンする必要があります。

交換する必要があります

<beans:bean id="userDetailsServiceImpl"
    class="com.foo.bar.service.LoginServiceImpl" />

と:

<context:component-scan base-package="com.foo.bar" />

LoginServiceImpl クラスに次のアノテーションを付けます。

@Service(name="userDetailsServiceImpl") 
于 2012-11-21T19:06:33.047 に答える