Hello Friends,
One of the points which is said time and again against Java is that ,we have to write a lot of boilerplate
code in the form of setters and getters for our simple POJO classes which unnecessarily increases the
length of our code.
code in the form of setters and getters for our simple POJO classes which unnecessarily increases the
length of our code.
To tackle this problem, there is an open source project called Project Lombok which solves this problem
by allowing you to just write few annotations and it will generate getters and setters in the .class which
are generated from Java files.
by allowing you to just write few annotations and it will generate getters and setters in the .class which
are generated from Java files.