0

私は私のgrailsアプリで春のセキュリティを使用しており、これをしたい:

私のホームページは : http://www.test.com:8080/my-app/これは index.gsp です

これで、index.gsp ファイルにログイン フォームが挿入されました。

<form action='${postUrl}' method='POST' id='loginForm' class='cssform' autocomplete='off'>
<p>
<label for='username'><g:message code="springSecurity.login.username.label"/>:</label>
<input type='text' class='text_' name='j_username' id='username'/>
</p>

<p>
<label for='password'><g:message code="springSecurity.login.password.label"/>:</label>
<input type='password' class='text_' name='j_password' id='password'/>
</p>
<p id="remember_me_holder">
<input type='checkbox' class='chk' name='${rememberMeParameter}' id='remember_me' <g:if test='${hasCookie}'>checked='checked'</g:if>/>
<label for='remember_me'><g:message code="springSecurity.login.remember.me.label"/></label>
</p>

<p>
<input type='submit' id="submit" value='${message(code: "springSecurity.login.button")}'/>
</p>
</form>

ユーザー名とパスワードを挿入すると、次の URL にリダイレクトします: http://www.test.com:8080/my-app/customer/list

これどうやってするの?

4

1 に答える 1

4

この回答はあなたを助けるはずです: Grails Spring Security: ログイン成功/失敗後のリダイレクト

この質問は重複と見なされる可能性が非常に高いです。よろしければ、SO に質問を投稿する前に、クイック検索 (ここまたは Google) を実行してください。:)

于 2013-04-04T10:09:04.110 に答える