It reduces boilerplate code. Frame the concept in practical terms so you can explain it during interview discussion.
Lombok is a Java library that helps reduce boilerplate code by generating common methods like getters, setters, equals, hashCode, and toString at compile time. This makes the code cleaner and easier to maintain. For instance, adding @Getter and @Setter annotations to a class automatically generates getter and setter methods for its fields.
Additional Notes
Why do teams use Lombok in Java projects in production code?