Project Lombok is a tool for reducing boilerplate code in java through Annotations and compile time code generation.

learn more… | top users | synonyms

0
votes
0answers
20 views

Building with Lombok's @Slf4j and Eclipse: Cannot find symbol log

I have the lombak plugin in eclipse and enabled annotation processing in eclipse under java compiler, but still it is unable to recognize the log statements when I use @Slf4j annotation. Do we have to ...
0
votes
0answers
48 views

NullPointerException thrown in Emma if emma:emma started from Sonar; code with Lombok

I have a Maven project which uses Emma and Sonar. Everything was OK and worked till that time, I have set up Lombok project and used a couple of @Getter and @Setter annotations. Now, if I type mvn ...
0
votes
1answer
25 views

Hyperjaxb/lombok : how to force Hyperjaxb generate annotations mapping on attributes and not on the methods?

I would like jpa annotations on my attributes, not on getter and setter. It is possible to configure hyperjaxb for this ? I want this because I use lombok in order to avoid getter and setter code and ...
2
votes
1answer
35 views

How to catch exceptions when using Lombok's @Cleanup?

I am using Lombok's @Cleanup and even when I find it very useful, I cannot figure out how can I catch an exception being thrown by the main block of code that makes use of the resource to be cleant. ...
0
votes
1answer
44 views

I use Lombok project but getter's and setter's don't have JavaDoc

I use Lombok project but getter's and setter's don't have JavaDoc. How can i activate this option?
0
votes
2answers
85 views

Lombok slowing down build process in large project

If I use Lombok in a project (about 15 separate projects - EJB, Web,...) Lombok slows down the build Process about 2-3 times. Is there any solution for this, or is that a disadvantage of Lombok? Just ...
1
vote
1answer
53 views

Custom Lombok Extensions Require Lombok Package?

I've been experimenting with adding custom annotations to Lombok. My starting point is a fork of the source on GitHub. I added an annotation that works fine. I can use the included eclipse launch ...
0
votes
2answers
307 views

Building with Lombok's @Slf4j and Intellij: Cannot find symbol log

I have a maven project that builds with no problems from the command line. However, when I build it with IntelliJ, I get the error: java: FileName.java:89: cannot find symbol symbol : variable log ...
2
votes
0answers
82 views

How to debug delomboked code in IntelliJ?

In my Maven based project I'm using Lombok to save some boilerplate code. Furthermore I'm using a Spring Data library which uses AspectJ to get things done. Sadly, Lombok and AspectJ don't play nicely ...
1
vote
2answers
140 views

Java SneakyThrow of exceptions, type erasure

Can someone explain this code? public class SneakyThrow { public static void sneakyThrow(Throwable ex) { SneakyThrow.<RuntimeException>sneakyThrowInner(ex); } private static <T ...
0
votes
2answers
398 views

How can I get Maven to compile from code modified (delombok'd) instead of from src/main/java

Using the delombok maven plugin places all my files in 'target/generated-sources/delombok'. When I try and run the maven compiler it complains about duplicate classes so I set addOutputDirectory to ...
2
votes
1answer
239 views

Android Lombok IntelliJ integration

I'm trying to include lombok in my android project, I'm using IntelliJ IDEA as my IDE. The project is built with maven. I've added the lombok dependency and compiling the project with maven succeeds. ...
0
votes
0answers
248 views

Eclipse Indigo not running project after installing Lombok

I've recently installed Lombok (version 0.11.0) into my Eclipse Indigo installation and now all of my projects in Eclipse no longer launch, both from Run and Debug. The error I am getting is the ...
0
votes
0answers
98 views

Iss with Lombok and Eclipse

I use Eclipse Helios (Version: Helios Service Release 2 Build id: 20110218-0911) and i wanna use Lombok. I've installed Lombok (by double clicking on its .jar file and doing all things lombok ...
1
vote
2answers
167 views

Lombok lazy getter for mutable collections

I have a class which has a collection: public class Foo { @Inject private BarManager barManager; @Getter(lazy = true) private final List<Bar> bars = barManager.getAll(); ...
2
votes
1answer
191 views

Lombok usage of 'val' type in IntelliJ

Hi I'm using Project Lombok (version 0.11.2) in a project. I have both Intellij, and Eclipse (STS) installed, with lombok integrated with both IDEs (STS, via the lombok JAR, IntelliJ via the plugin ...
0
votes
2answers
663 views

lombok not generating getter and setter

I just tried to send a maven based project to an other computer and HORROR, red markers everywhere!! However "mvn clean install" is building just fine. Quickly I noticed that lombok is not generating ...
3
votes
3answers
414 views

How to ignore the Java Source directory during Maven Compilation?

I am trying to use the Lombok Maven Plugin to ensure the correct creation of Javadocs when using Lombok. Lombok Maven introduces a new code generation goal, just prior to compilation. In my ...
1
vote
1answer
162 views

Error compiling Java/Scala mixed project and Lombok

I am trying to compile a Maven Java/Scala mixed project that has a Scala class that depends on a Java bean with lombok annotations. I tried adding the lombok jar file to the boot classpath of the ...
3
votes
1answer
280 views

Lombok with Play 2

What about Lombok integration with Play Framework 2? I really like Lombok it make my code more readable and less boilerplate. And Play Framework is wonderful too. But there is a great trouble in case ...
4
votes
2answers
481 views

Can't seem to get Lombok to work in unit tests

We've been putting together some (really simple) code in order to test out and introduce Lombok annotations into our project to make our code a bit nicer. Unfortunately, seems to break in testing, ...
4
votes
1answer
318 views

Lombok annotations vs code coverage in Cobertura or similar tool

Configure cobertura to ignore certain blocks of code From what I have read from above question, there's no way in Cobertura to exclude given code part from being tested versus having coverage in ...
5
votes
2answers
870 views

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

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 ...
0
votes
2answers
471 views

ProjectLombok with Eclipse and Android

I am trying to use Lombok with Android however whenever I try to run I get these errors [2012-02-10 10:53:49 - xxx] The library 'lombok2.jar' contains native libraries that will not run on the ...
1
vote
0answers
141 views

Does project lombok works in jboss developer studio?

Is it possible to install project lombok in jboss developer studio? When i run lombok.jar, i can only install it into a real eclipse. Thanks!
3
votes
3answers
781 views

Lombok for Android

I would love to get all the features lombok provides. I'm tired of writing lots of boilerplate code and I would like to know if there is a port of lombok on Android? Or at least an equivalent? ...
4
votes
2answers
476 views

Maven Groovy and Java + Lombok

I am trying to add groovy to an existing Java Maven project that leverages Lombok. Unfortunately when I enable the groovy-maven-eclipse compiler with the pom fragment below, my lombok annotated java ...
3
votes
2answers
310 views

Does Project Lombok work well with Scala?

If I wanted my Scala project to be "compatible" with Java, that is make it practical to call the Scala API from Java code (so that non-Scala programmers can also contribute), would it be possible to ...
2
votes
2answers
424 views

Can I use Lombok with GWT in Development Mode?

I tried to follow the official instructions on running a lomboked GWT project in dev mode, but either I'm doing something wrong, or this doesn't work with current versions of GWT anymore? The error I ...
3
votes
2answers
364 views

Omitting one Setter/Getter in Lombok

I want to use a data class in Lombok. Since it has about a dozen fields, I annotated it with @Data in order to generate all the setters and getter. However there is one special field for which I don't ...
1
vote
1answer
587 views

lombok 0.10.1. error in Eclipse 3.7

when I try to use @Data annotation with lombok 0.10.1. in Eclipse: 3.7.0.v20110504-0800-7b7qFVpFEx2XnmYtj_9RfO7 I got below error, can anyone advise? Lombok annotation handler class ...
2
votes
2answers
167 views

How to use default values with Lombok and Eclipse save actions

I use Eclipse Save actions, and generally find them very useful. However, I've hit a scenario when using Lombok that is enfuriating. In the following class, I want to set a default value for a field ...
6
votes
1answer
739 views

Generate Java Externalizable readExternal() / writeExternal() blocks automatically

I am working on a project where Java's native serialization is slow, so we want to move to implementing Externalize interface on the classes for superior performance. However, these classes have ...
1
vote
2answers
2k views

tools.jar not on classpath anymore?

I recently reformatted my system from Fedora 15 32 to Fedora 15 64-bit. I installed the 64-bit version of Java, started up a fresh Netbeans instance, tried to build my project which uses Project ...
0
votes
1answer
337 views

It is not possible to compile well by using lombok

Because I am Japanese, poor English is used. Please acknowledge it. It is not possible to compile well by using lombok. (source site is http://projectlombok.org/download.html) Lombok installed ...
0
votes
3answers
365 views

Eclipse: don't include some maven dependencies at runtime

I am running a GWT + GAE Maven project in Eclipse, which has a dependency on the lombok jar: <dependency> <groupId>org.projectlombok</groupId> ...
0
votes
3answers
734 views

Maven + Delombok issue when compiling in Eclipse

I have a maven project in Eclipse that uses lombok/delombok. When I build, from Eclipse, using a maven script (e.g. mvn clean package), everything works fine. However, when I run directly from ...
19
votes
4answers
2k views

how lombok works?

I met lombok today. cool~~ BTW I'm very anxious to know how it works. A Java Geek Article give some clue but it's not perfect clear for me. Java 6 removes apt and make javac able to manage ...
2
votes
1answer
110 views

How do I define a new handler in Lombok?

I want to add my own handler to Lombok. What is the easiest way to have it found by the system? If I add it into the lombok.jar, that seems to work, but it does seem cumbersome.
7
votes
2answers
808 views

Lombok with hibernate

Is this possible? Haven't seen much discussion on it.
5
votes
3answers
441 views

What are the risks I should know about regarding Project Lombok?

I'm coming up with performance goals for the new year, and I thought I'd be fun to put a goal to reduce the size of the code base, especially boilerplate. One action I've come up with to address this ...
3
votes
1answer
263 views

How project Lombok in java works and is that possible in .net using attributes?

Project Lombok makes it trivial to implement the boilerplate code in the classes. Is that possible with .net attributes. Is any .net port there?
4
votes
2answers
890 views

Explicit constructor using Lombok?

I'm rewriting some messy code that manages a database, and saw that the original programmer created a class mapped to the database like so: (I've removed unnecessary code that has no purpose in this ...
51
votes
6answers
8k views

Is it safe to use Project Lombok?

In case you don't know, Project Lombok helps with some of the annoyances of Java with stuff like generating getters and setters with annotations and even simple JavaBean like generation with @Data. It ...
4
votes
1answer
766 views

Java getter/setter generation with Lombok for code with annotations

I use Project Lombok to automatically generate getter and setter methods for all fields of a Java class. When a field is annotated with e.g. @XmlTransient, the annotation is not propagated to the ...
16
votes
6answers
7k views

Cannot make Project Lombok work on Eclipse (Helios)

I have followed the tutorial here http://projectlombok.org/ but after adding import and @Data nothing happens. Does it work on eclipse helios ?
9
votes
2answers
1k views

Is Project Lombok suitable for large java projects?

Is anybody out there using Project Lombok for a large scale production system? How does it influence your compile process (i.e. does it do two-pass compilation, slow it down, make it more fragile)?
11
votes
4answers
1k views

Project Lombok vs. Eclipse templates / code generation

Does Project Lombok offer any benefit compared to code templates / code generation in Eclipse? Are there any downsides (apart from including the .jar)?.
7
votes
3answers
532 views

Has anyone used Ant4Eclipse with Project Lombok?

Has anyone successfully used Ant4Eclipse (http://www.ant4eclipse.org/) in combination with Project Lombok (http://projectlombok.org/)? Lombok provides annotations for removing boilerplate code; ...