Puneet Chhabrapuneetchhabra.hashnode.dev·Dec 15, 2024Lombok Not working in IntelliJ even after everything seems fine.If lombok was working fine, and suddenly stopped working on some project (new projects maybe), try these steps: Lombok plugin installed, annotation processing enabled, added dependency, still lombok not working: Go to File > Project Structure > Libr...lombok
Niraj Sahaninirajsahani147.hashnode.dev·Nov 21, 2024Understanding Lombok: Simplify Your Java Code with Less BoilerplateBoilerplate refers to sections of code that are repeated in multiple places with little to no variation. example- Getter and Setters public class User { private String name; private String email; private int age; // Getters and Sette...lombok project
Rakesh Vardanrakeshvardan.com·Oct 14, 2024How to Utilize Java 'Records' in Test AutomationIntroduction Writing clean, maintainable test automation code is crucial for ensuring long-term project success. One of the challenges test engineers face is managing the repetitive, boilerplate code needed for data models in test cases. Fortunately,...142 readsBoilerplate Code
Her Code Reviewhercodereview.hashnode.dev·Jun 24, 2024Utility classes in JavaAs a software engineer, I often encounter utility classes used across the codebase in my daily work. Let’s explore the purpose of this class. You've probably encountered this scenario before: you repeatedly reuse a piece of logic, so you extract it t...Java
jean joel Nteppblog.nameksoft.xyz·Apr 3, 2024Design Pattern : BuilderIntroduction Design patterns are generic solutions to classic problems encountered in software development and many other fields. As a software developer, knowing them often means having a good grounding in computer science. Of course, it's not enoug...7 likes·34 readsdesign patterns
BitFlipperbitflippers.dev·Jan 14, 2024Debugging OpenRewrite AST that contains missing or invalid type informationYou’ve finally managed to get your Java refactoring recipe working where it is producing the correct text output. Your unit test is still failing though with: java.lang.IllegalStateException: AST contains missing or invalid type information Why are t...310 readsopenrewrite
Lingaiah Dandalinga.hashnode.dev·Jan 10, 2024Enhancing Poductivity with Lombok in Spring applicationsIntroduction:In the area of Java development, writing clean and concise code can be a challenge. Luckily, tools like Project Lombok come to the rescue, offering a streamlined approach to reducing boilerplate code. When combined with the Spring Framew...1 like·85 readsJava & SpringBoot &MicroservicesJava
Redha Bayu Anggararedhabayuanggara.hashnode.dev·Jan 5, 2024Lombok Constructor Annotationsexplaination how can make constructor by Lombok annotation. Lombok Project With Java Lombok Project Builder annotation Options annotation @AllArgsConstructor, @NoArgsConstructor and @RequiredArgsConstructor @NoArgsConstructor will generate a def...39 readslombok
Rinjani Dawn Adventuresrinjanidawnadventures.hashnode.dev·Sep 21, 2023Why Should You Choose Lombok for Your Next Adventure?Are you seeking an unforgettable adventure that combines stunning landscapes, warm hospitality, and exciting activities? Look no further than the Indonesian island of Lombok! From mesmerizing Lombok trekking experiences to the allure of Mandalika's p...lombok
Murewa Ashirumurewaashiru.hashnode.dev·Jul 29, 2023Creating a CRUD app with Java Spring BootJava is a multi-platform, object-oriented, and network-centric language. Spring Boot is an open-source Java-based framework used to create a microservice. It provides a good platform for Java developers to develop stand-alone and production-grade spr...1 like·359 readsJava