この次のコードをプロジェクトに追加したとき
Form<User> filledForm2 = userSignupForm.bindFromRequest();
次のようなエラー メッセージが表示され、動作が停止しました。
Execution exception
[IllegalStateException: JSR-303 validated property 'Password' does not have a corresponding accessor for data binding - check your DataBinder's configuration (bean property versus direct field access)]
私User
のクラスはそのようなものでした:
class User{
String username;
String Password;
}
java play フレームワークで DataBinder の構成を確認/変更するにはどうすればよいですか?