Eclipse(STS)でlombokが効かないエラーが発生
原因は単純でLombokのインストール設定をしていなかった。。。(>_<)
コンパイル通ったからインストール設定してないのなかなか気が付きませんでした。
以下、エラーメッセージ抜粋。
Caused by: org.springframework.beans.NotReadablePropertyException: Invalid property 'foo' of bean class [com.example.demo.login.domain.model.foo]: Bean property 'foo' is not readable or has an invalid getter method: Does the return type of the getter match the parameter type of the setter?
対応
以下のLombokのサイトからダウンロードして
「https://projectlombok.org/download」
ダウンロードしたら「Lombok.jar」をダブルクリックします。
そしたら「STS.exe」を選択して(多分自動で選択される)「Install/Update」で完了。
STS.iniファイルにlombok.jarが追加されていればOKです。
コメント