Skip to content
Advertisement

Lombok: RequiredArgsConstructor is not working

It seems that @RequiredArgsConstructor not working in the code below. Why is it?

JavaScript

I get the error:

JavaScript

For some reason seems it does work for other domain class in which no constructor defined but instead used the @RequiredArgsConstructor annotation.

Advertisement

Answer

According to Documentation, Required arguments are final fields and fields with constraints such as @NonNull.

You need to make username as @NonNull

JavaScript

And you need to make them final too.

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement