Frage

I want to try out Lombok specifically the @NoArgsConstructor and @Getter, @Setter

However when I try to use it and do something like:

User user = new User(); // error, even if User have @NoArgsConstructor annotation

Am I missing something here?

Error:

The constructor User() is undefined
War es hilfreich?

Lösung

Have you installed Lombok and added it to your pom file?

See: http://jnb.ociweb.com/jnb/jnbJan2010.html#installation

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top