lombok
lombok is a library to help your write java cleaner and more efficiently. It’s plugged into the editor and build tool, which works at compile time.
Essentially, it modifies the byte-codes by operating AST (abstract semantic tree) at compile time, which is allowed by javac. This is, in fact, a way to modify java grammar.
Usage
To use it,
1. install lombok plugin in intellij
2. add package dependency in project (to use its annotations)
1
2
3
4
5
6
org.projectlombok
lombok
1.16.18
provided<