我已經在我的application.yml中聲明瞭Spring Security作爲依賴項,並且在運行我的應用程序時默認登錄表單按預期工作。我想對錶單進行樣式設計,以便我的應用程序無縫連接。自定義Spring Security 3.1.1在Grails 3中登錄表單
在視圖/ AUTH我有auth.gsp其中包含下面的代碼:
<form method="POST" action="${resource(file: 'j_spring_security_check')}">
<table>
<tr>
<td>Username:</td><td><g:textField name="j_username"/></td>
</tr>
<tr>
<td>Password:</td><td><input name="j_password" type="password"/></td>
</tr>
<tr>
<td colspan="2"><g:submitButton name="login" value="Login"/></td>
</tr>
</table>
</form>
提交表單沒有任何反應時,卻出現預期這種形式。我假設這是因爲{resource(file: 'j_spring_security_check')}
不是它應該進行的操作。我從here得到了這段代碼,我相信這是用Grails 2編寫的。任何想法正確的行動是什麼?
有點offtopic,但你可以請發表評論http://stackoverflow.com/questions/38175154/which-plugin-module-of -spring-sec-oauth-should-used-in-grails-3-x? – injecteer