About 54 results
Open links in new tab
  1. Maven + Lombok @Slf4j on JDK 21: “cannot find symbol: variable log ...

    Aug 18, 2025 · Question Given the above, what else could make Maven compile the original sources without Lombok actually generating the log field, even though the processor is clearly on the path? …

  2. How to specify an ASM and lombok version to Maven on Java 24 …

    Apr 14, 2025 · Learn how to specify ASM and Lombok versions in Maven for Java 24 projects.

  3. Lombok not working with IntelliJ 2020.3 Community Edition

    Dec 1, 2020 · I worked with Lombok without any problems until Today, when my Intellij was automatically updated to the latest version 2020.3 30th, November build. After that, any Lombok …

  4. Cannot make Project Lombok work on Eclipse - Stack Overflow

    5 Remenber run lombok.jar as a java app, if your using windows7 open a console (cmd.exe) as adminstrator, and run C:"your java instalation"\ java -jar "lombok directory"\lombok.jar and then …

  5. Can't compile project when I'm using Lombok under IntelliJ IDEA

    Feb 24, 2012 · I'm trying to use Lombok in my project that I'm developing using IntelliJ IDEA 11. I've installed 3rd-party plugin for IDEA and it seems working fine because IDEA sees all autogenerated …

  6. Lombok is not generating getter and setter - Stack Overflow

    I followed all steps you described but with eclipse 2019-12 and lombok 1.18.12, eclipse does not recognize that there is a \@getter or \@setter annotation in my model. Is there even a getter or setter …

  7. Lombok getter/setter vs Java 14 record - Stack Overflow

    Apr 20, 2020 · Lombok is largely about syntactic convenience; it is a macro-processor pre-loaded with some known useful patterns of code. It doesn't confer any semantics; it just automates the patterns, …

  8. Build an object from an existing one using lombok

    Nov 4, 2017 · Band rollingStones = Band.builder() .name("Rolling Stones") .type("Rock Band") .build(); Is there an easy way to create an object of Band using the existing object as a template and …

  9. Lombok added but getters and setters not recognized in Intellij IDEA

    Jul 18, 2013 · I am using IntelliJ IDEA on ubuntu. I added lombok.jar into my project and installed the Lombok plugin for IDEA. I have access to the annotations but the getters and setters aren't …

  10. Lombok Annotations Not Working in Spring Boot Project (Java 21)

    Dec 6, 2024 · I am working on a Spring Boot project using Lombok to generate boilerplate code such as getters, setters, and constructors. Despite having the correct Lombok dependency in the pom.xml, …