LoginSignup
0
0

More than 5 years have passed since last update.

PlayFramework で IllegalStateException が出たときの対処法

Posted at

普段Javaを書くことはないのですが、ヘルプ要員として案件が舞い込んできたのでその時のエラーメモです。

問題

さっきまで動いていたローカル環境が以下のエラーにより動かなくなりました!

[error] application - java.lang.IllegalStateException: JSR-303 validated property 'hogeCode' does not have a corresponding accessor for data binding - check your DataBinder's configuration (bean property versus direct field access)

対処

下記コマンドを実行します!

$ activator clean
$ activator compile

原因

間違えてFW内のbin以下のファイルをいじっていたようでコンパイルエラーが出ていました。
そのため、一度activator cleanで中間ファイルをクリアし、activator compileで再コンパイルすると上手く動くようになりました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0