security モジュールから派生した独自のセキュリティ クラスを作成しました。私のルートテーブルの一部は次のようになります:
* /authenticate Security.authenticate
私のテンプレートは次のようになります。
<form action="@{Security.authenticate()}" method="POST">
<label for="user">E-Mail:</label>
<input type="text" name="email" id="email" />
<label>password:</label> <input type="password" name="password" size="19"/>
<input type="submit" value="Signin" />
</form>
次の例外が発生します。
アクション Security.authenticate を呼び出すことができるルートが見つかりませんでした。
/app/views/Security/index.html 内 (11 行目あたり)
<form action="@{Security.authenticate()}" method="POST">