lombok

How to Get Rid of the Lombok Dependency and Its Annotations

If for some reasons you have decided that you don’t like Lombok any longer, you can follow these steps to remove it: There is also an automatic tool called Delombok to help do automate the removing of Lombok. Delombok is a command-line tool provided by the Project Lombok library that can be used to remove… read more »

What is Boilerplate Code and How to Reduce It In Java

In programming, boilerplate refers to sections of code that are repeated in many places throughout a project or across multiple projects. This code may be necessary, but it is often repetitive and can make the codebase harder to read and maintain. Examples of boilerplate code in Java might include getters and setters for class variables,… read more »

Sidebar