0

我在我的 grails 应用程序上使用 spring security 并希望这样做:

我的主页是: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 回答