Contents

About the Lombok Library (with. Java)

   Mar 14, 2025     4 min read

**Lombok: essential live for Java developers

Lombok: This article examines the required library for Java developers.

When developing Java, repetitive code writing is often unavoidable.

For example, when creating a data class, it is inconvenient to generate ā€˜getterā€™, ā€˜setterā€™, ā€˜toStringā€™, ā€˜equalsā€™, and ā€˜hashCodeā€™ methods each time.

Lombok is the library that emerged to reduce iterations like this and increase readability of code.

What is Lombok??

Lombok is a library that automatically generates code that is repeatedly written by Java application development.

Annotation is analyzed at the time of compilation to insert the necessary code to reduce developer work and help write simpler and cleaner code.

Lombok is particularly useful when creating data-driven classes such as DTO (Data Transfer Object).

You can get the method and field you want with just an annotation without generating code directly from IDE.

Lombokā€™s main anote

1. @Getter / @Setter

  • Description: Automatically generate ā€˜getterā€™ and ā€˜setterā€™ methods for fields in the class.
  • Example:

    import lombok.Getter;
    import lombok.Setter;
    
    @Getter
    @Setter
    public class User {
        private String name;
        private int age;
    }
    
  • Result: The above code automatically generates methods ā€˜getName(), ā€˜setName(String name), ā€˜getAge()ā€™ and ā€˜setAge(intage)ā€™.

2. @ToString

  • Description: Automatically creates the ā€˜toStringā€™ method of the class.
  • Example:

    import lombok.ToString;
    
    @ToString
    public class User {
        private String name;
        private int age;
    }
    
  • Result: When an object is printed, it is printed in the same format as ā€˜User(name=John, age=25)ā€

3. @EqualsAndHashCode

  • Description: Automatically create ā€˜equalsā€™ and ā€˜hashCodeā€™ methods.
  • Example:

    import lombok.EqualsAndHashCode;
    
    @EqualsAndHashCode
    public class User {
        private String name;
        private int age;
    }
    
  • Results: The ā€˜equalsā€™ and ā€˜hashCodeā€™ methods operate depending on the contents of the object.

4. @NoArgsConstructor / @AllArgsConstructor / @RequiredArgsConstructor

  • Description: Automatically create various types of generators.
    • @NoArgsConstructor: Default generator with no parameters.
    • @AllArgsConstructor: A constructor that receives all fields as parameters.
    • `@RequiredArgsConstructorā€™: A constructor that receives only the ā€˜finalā€™ or ā€˜@NonNullā€™ fields as parameters.
  • Example:

    import lombok.AllArgsConstructor;
    import lombok.NoArgsConstructor;
    
    @NoArgsConstructor
    @AllArgsConstructor
    public class User {
        private String name;
        private int age;
    }
    
  • Results: Two types of generators are automatically provided.

5. @Data

  • ģ„¤ėŖ…: @Getter, @Setter, @ToString, @EqualsAndHashCode, @RequiredArgsConstructorė„¼ ķ•œ ė²ˆģ— ģ œź³µ.
  • Example:

    import lombok.Data;
    
    @Data
    public class User {
        private String name;
        private int age;
    }
    
  • Results: Automatically generate all the methods required for a data-driven class.

6. @Builder

  • Description: Help facilitate the implementation of builder patterns.
  • Example:

    import lombok.Builder;
    
    @Builder
    public class User {
        private String name;
        private int age;
    }
    
  • Use:
    User user = User.builder()
                    .name("John")
                    .age(25)
                    .build();
    

7. @Slf4j

  • Description: Automatically create ā€˜Loggerā€™ object in class.
  • Example:

    import lombok.extern.slf4j.Slf4j;
    
    @Slf4j
    public class Example {
        public void logExample() {
            log.info("This is a log message!");
        }
    }
    

Advantages of Lombok

  1. Simplify code
    Reduce repetitive code and write concise and easy-to-read code.

  2. Improves productivity
    You can save time writing methods such as getter, setter, to String, and so on.

  3. Advanced readability
    Simplifies the structure of the code so that you can focus solely on business logic.

Lombokā€™s shortcomings

  1. IDE Dependency
    Lombok needs to install the plug-in of IDE to work properly. Itā€™s hard to understand when you look at the code without the plug-in.

  2. Running Debugging
    Because code is generated at compilation time, it is sometimes difficult to verify the actual generated code when debugging.

  3. Compatibility issues
    Compatibility issues may occur in certain environments (for example, some build tools or other libraries).

Conclusion

Lombok is a powerful tool that makes Java development faster and more efficient.

It helps you remove repetitive codes, increase productivity, and write concise and readable codes.

However, dependency and debugging issues must be kept in mind when using Lombok.

Take advantage of Lombok to speed up both quality and development of your project! šŸš€