1

我正在使用 GWT 和 MVP 以及 2.4 和 Spring 安全性来保护我的应用程序。但不想使用 JSP 登录页面(默认页面)。我想使用我的适当页面。这是我的securitydemo.xml:

logtest 是我的项目的名称,我使用 lohtest.html 像默认页面

我有这样的消息:控制台和页面消息中的访问被拒绝,例如:GWT模块'logtest'可能需要(重新)编译

如果您对这些问题有一些想法,请

<!-- HTTP security configurations -->
<http auto-config='true'>

    <intercept-url pattern="/logtest.html" access="IS_AUTHENTICATED_ANONYMOUSLY" />
    <intercept-url pattern="/resources/favicon.ico" access="IS_AUTHENTICATED_ANONYMOUSLY" />




    <form-login login-page="/Logtest.html" />

    <logout logout-success-url="/logtest.html" />

    <session-management invalid-session-url="/logtest.html"

        session-authentication-error-url="/logtest.html"

        session-fixation-protection="newSession">

        <concurrency-control max-sessions="1"
            error-if-maximum-exceeded="false" />
    </session-management>
</http>


<authentication-manager alias="authenticationManager">
    <authentication-provider>
        <password-encoder hash="sha" />
        <jdbc-user-service data-source-ref="dataSource"
            users-by-username-query="
              select username,password, enabled 
              from users where username=?"

            authorities-by-username-query="
              select u.username, ur.authority from users u, user_roles ur 
              where u.user_id = ur.user_id and u.username =?  " />
    </authentication-provider>
</authentication-manager>

4

0 回答 0