Reducing Boilerplate Code with Project Lombok

Reducing Boilerplate Code with Project Lombok

By Michael Kimberlin, OCI Senior Software Engineer

January 2010


Contents

Introduction

"Boilerplate" is a term used to describe code that is repeated in many parts of an application with little alteration. One of the most frequently voiced criticisms of the Java language is the volume of this type of code that is found in most projects. This problem is frequently a result of design decisions in various libraries, but it's exacerbated by limitations in the language itself. Project Lombok aims to reduce the prevalence of some of the worst offenders by replacing them with a simple set of annotations.

While it is not uncommon for annotations to be used to indicate usage, to implement bindings, or even to generate code used by frameworks, they are generally not used for the generation of code that is directly utilized by the application. This is partly because doing so would require that the annotations be eagerly processed at development time. Project Lombok does just that. By integrating into the IDE, Project Lombok is able to inject code that is immediately available to the developer. For example, simply adding the @Data annotation to a data class, as below, results in a number of new methods in the IDE:

Data Annotation

Installation

Project Lombok is available as a single jar file on the project site. It includes the APIs for development as an installer for IDE integration. On most systems, simply double-clicking the jar file will launch the installer. If the system is not configured to correctly launch jar files, it can also be run from the command line as follows:

java -jar lombok.jar

The installer will attempt to detect the location of a supported IDE. If it cannot correctly determine where the IDE is installed, the location can be specified manually. Simply click "Install/Update," and IDE integration is complete.

At the time of this article's writing, only Eclipse and NetBeans are supported. However, the release of the IntelliJ IDEA source code has placed IDEA support as a possibility for future releases, and limited success has already been reported with JDeveloper.

Lombok Installer

The jar file will still need to be included in the classpath of any projects that will use Project Lombok annotations. Maven users can include Lombok as a dependency by adding this to the project pom.xml file:

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.projectlombok</groupId>
  4. <artifactId>lombok</artifactId>
  5. <version>0.9.2</version>
  6. </dependency>
  7. </dependencies>
  8. <repositories>
  9. <repository>
  10. <id>projectlombok.org</id>
  11. <url>http://projectlombok.org/mavenrepo</url>
  12. </repository>
  13. </repositories>

Lombok Annotations

It is not uncommon for a typical Java project to devote hundreds of lines of code to the boilerplate required for defining simple data classes. These classes generally contain a number of fields, getters, and setters for those fields, as well as equals and hashCode implementations. In the simplest scenarios, Project Lombok can reduce these classes to the required fields and a single @Data annotation.

Of course, the simplest scenarios are not necessarily the ones that developers face on a day-to-day basis. For that reason, there are a number of annotations in Project Lombok to allow for more fine grained control over the structure and behavior of a class.

@Getter and @Setter

The @Getter and @Setter annotations generate a getter and setter for a field, respectively.

The getters generated correctly follow convention for boolean properties, resulting in an isFoo getter method name instead of getFoo for any boolean field foo. It should be noted that if the class to which the annotated field belongs contains a method of the same name as the getter or setter to be generated, regardless of parameter or return types, no corresponding method will be generated.

Both the @Getter and @Setter annotations take an optional parameter to specify the access level for the generated method.

Lombok annotated code:

@Getter @Setter private boolean employed = true;
@Setter(AccessLevel.PROTECTED) private String name;

Equivalent Java source code:

  1. private boolean employed = true;
  2. private String name;
  3.  
  4. public boolean isEmployed() {
  5. return employed;
  6. }
  7.  
  8. public void setEmployed(final boolean employed) {
  9. this.employed = employed;
  10. }
  11.  
  12. protected void setName(final String name) {
  13. this.name = name;
  14. }

@NonNull

The @NonNull annotation is used to indicate the need for a fast-fail null check on the corresponding member. When placed on a field for which Lombok is generating a setter method, a null check will be generated that will result in a NullPointerException, should a null value be provided.

Additionally, if Lombok is generating a constructor for the owning class, then the field will be added to the constructor signature and the null check will be included in the generated constructor code.

This annotation mirrors @NotNull and @NonNull annotations found in IntelliJ IDEA and FindBugs, among others. Lombok is annotation agnostic with regards to these variations on the theme. If Lombok comes across any member annotated with any annotation of the name @NotNull or @NonNull, it will honor it by generating the appropriate corresponding code. The authors of Project Lombok further comment that, in the event that annotation of this type is added to Java, the Lombok version will be subject to removal.

Lombok annotated code from the class Family:

@Getter @Setter @NonNull
private List<Person> members;

Equivalent Java source code:

  1. @NonNull
  2. private List<Person> members;
  3.  
  4. public Family(@NonNull final List<Person> members) {
  5. if (members == null) throw new java.lang.NullPointerException("members");
  6. this.members = members;
  7. }
  8.  
  9. @NonNull
  10. public List<Person> getMembers() {
  11. return members;
  12. }
  13.  
  14. public void setMembers(@NonNull final List<Person> members) {
  15. if (members == null) throw new java.lang.NullPointerException("members");
  16. this.members = members;
  17. }

@ToString

This annotation generates an implementation of the toString method.

By default, any non-static fields will be included in the output of the method in name-value pairs. If desired, the inclusion of the property names in the output can be suppressed by setting the annotation parameter includeFieldNames to false.

Specific fields can be excluded from the output of the generated method by including their field names in the exclude parameter. Alternatively, the of parameter can be used to list only those fields desired in the output.

The output of the toString method of a superclass can also be included by setting the callSuper parameter to true.

Lombok annotated code:

  1. @ToString(callSuper=true,exclude="someExcludedField")
  2. public class Foo extends Bar {
  3. private boolean someBoolean = true;
  4. private String someStringField;
  5. private float someExcludedField;
  6. }

Equivalent Java source code:

  1. public class Foo extends Bar {
  2. private boolean someBoolean = true;
  3. private String someStringField;
  4. private float someExcludedField;
  5.  
  6. @java.lang.Override
  7. public java.lang.String toString() {
  8. return "Foo(super=" + super.toString() +
  9. ", someBoolean=" + someBoolean +
  10. ", someStringField=" + someStringField + ")";
  11. }
  12. }

@EqualsAndHashCode

This class level annotation will cause Lombok to generate both equals and hashCode methods, as the two are tied together intrinsically by the hashCode contract.

By default, any field in the class that is not static or transient will be considered by both methods. Much like @ToString, the exclude parameter is provided to prevent a field from being included in the generated logic. One can also use the of parameter to list only those fields that should be considered.

Also like @ToString, there is a callSuper parameter for this annotation. Setting it to true will cause equals to verify equality by calling the equals from the superclass before considering fields in the current class. For the hashCode method, it results in the incorporation of the results of the superclass's hashCode in the calculation of the hash.

When setting callSuper to true, be careful to make sure that the equals method in the parent class properly handles instance type checking. If the parent class checks that the class is of a specific type and not merely that the classes of the two objects are the same, this can result in undesired results. If the superclass is using a Lombok generated equals method, this is not an issue. However, other implementations may not handle this situation correctly.

Also note that setting callSuper to true cannot be done when the class only extends Object, as it would result in an instance equality check that short-circuits the comparison of fields. This is due to the generated method calling the equals implementation on Object, which returns false if the two instances being compared are not the same instance. As a result, Lombok will generate a compile time error in this situation.

Lombok annotated code:

  1. @EqualsAndHashCode(callSuper=true,exclude={"address","city","state","zip"})
  2. public class Person extends SentientBeing {
  3. enum Gender { Male, Female }
  4.  
  5. @NonNull private String name;
  6. @NonNull private Gender gender;
  7.  
  8. private String ssn;
  9. private String address;
  10. private String city;
  11. private String state;
  12. private String zip;
  13. }
  14.  

Equivalent Java source code:

  1. public class Person extends SentientBeing {
  2.  
  3. enum Gender {
  4. /*public static final*/ Male /* = new Gender() */,
  5. /*public static final*/ Female /* = new Gender() */;
  6. }
  7. @NonNull
  8. private String name;
  9. @NonNull
  10. private Gender gender;
  11. private String ssn;
  12. private String address;
  13. private String city;
  14. private String state;
  15. private String zip;
  16.  
  17. @java.lang.Override
  18. public boolean equals(final java.lang.Object o) {
  19. if (o == this) return true;
  20. if (o == null) return false;
  21. if (o.getClass() != this.getClass()) return false;
  22. if (!super.equals(o)) return false;
  23. final Person other = (Person)o;
  24. if (this.name == null ? other.name != null : !this.name.equals(other.name)) return false;
  25. if (this.gender == null ? other.gender != null : !this.gender.equals(other.gender)) return false;
  26. if (this.ssn == null ? other.ssn != null : !this.ssn.equals(other.ssn)) return false;
  27. return true;
  28. }
  29.  
  30. @java.lang.Override
  31. public int hashCode() {
  32. final int PRIME = 31;
  33. int result = 1;
  34. result = result * PRIME + super.hashCode();
  35. result = result * PRIME + (this.name == null ? 0 : this.name.hashCode());
  36. result = result * PRIME + (this.gender == null ? 0 : this.gender.hashCode());
  37. result = result * PRIME + (this.ssn == null ? 0 : this.ssn.hashCode());
  38. return result;
  39. }
  40. }

@Data

The @Data annotation is likely the most frequently used annotation in the Project Lombok toolset. It combines the functionality of @ToString@EqualsAndHashCode@Getter, and @Setter.

Essentially, using @Data on a class is the same as annotating the class with a default @ToString and @EqualsAndHashCode, as well as annotating each field with both @Getter and @Setter. Annotating a class with @Data also triggers Lombok's constructor generation. This adds a public constructor that takes any @NonNull or final fields as parameters. This provides everything needed for a Plain Old Java Object (POJO).

While @Data is extremely useful, it does not provide the same granularity of control as the other Lombok annotations. In order to override the default method generation behaviors, annotate the class, field, or method with one of the other Lombok annotations and specify the necessary parameter values to achieve the desired effect.

@Data does provide a single parameter option that can be used to generate a static factory method. Setting the value of the staticConstructor parameter to the desired method name will cause Lombok to make the generated constructor private and expose a a static factory method of the given name.

Lombok annotated code:

  1. @Data(staticConstructor="of")
  2. public class Company {
  3. private final Person founder;
  4. private String name;
  5. private List<Person> employees;
  6. }

Equivalent Java source code:

  1. public class Company {
  2. private final Person founder;
  3. private String name;
  4. private List<Person> employees;
  5.  
  6. private Company(final Person founder) {
  7. this.founder = founder;
  8. }
  9.  
  10. public static Company of(final Person founder) {
  11. return new Company(founder);
  12. }
  13.  
  14. public Person getFounder() {
  15. return founder;
  16. }
  17.  
  18. public String getName() {
  19. return name;
  20. }
  21.  
  22. public void setName(final String name) {
  23. this.name = name;
  24. }
  25.  
  26. public List<Person> getEmployees() {
  27. return employees;
  28. }
  29.  
  30. public void setEmployees(final List<Person> employees) {
  31. this.employees = employees;
  32. }
  33.  
  34. @java.lang.Override
  35. public boolean equals(final java.lang.Object o) {
  36. if (o == this) return true;
  37. if (o == null) return false;
  38. if (o.getClass() != this.getClass()) return false;
  39. final Company other = (Company)o;
  40. if (this.founder == null ? other.founder != null : !this.founder.equals(other.founder)) return false;
  41. if (this.name == null ? other.name != null : !this.name.equals(other.name)) return false;
  42. if (this.employees == null ? other.employees != null : !this.employees.equals(other.employees)) return false;
  43. return true;
  44. }
  45.  
  46. @java.lang.Override
  47. public int hashCode() {
  48. final int PRIME = 31;
  49. int result = 1;
  50. result = result * PRIME + (this.founder == null ? 0 : this.founder.hashCode());
  51. result = result * PRIME + (this.name == null ? 0 : this.name.hashCode());
  52. result = result * PRIME + (this.employees == null ? 0 : this.employees.hashCode());
  53. return result;
  54. }
  55.  
  56. @java.lang.Override
  57. public java.lang.String toString() {
  58. return "Company(founder=" + founder + ", name=" + name + ", employees=" + employees + ")";
  59. }
  60. }

@Cleanup

The @Cleanup annotation can be used to ensure that allocated resources are released. When a local variable is annotated with @Cleanup, any subsequent code is wrapped in a try/finally block that guarantees that the cleanup method is called at the end of the current scope.

By default @Cleanup assumes that the cleanup method is named "close," as with input and output streams. However, a different method name can be provided to the annotation's value parameter. Only cleanup methods that  take no parameters are able to be used with this annotation.

There is also a caveat to consider when using the @Cleanup annotation. In the event that an exception is thrown by the cleanup method, it will preempt any exception that was thrown in the method body. This can result in the actual cause of an issue being buried and should be considered when choosing to use Project Lombok's resource management. Furthermore, with automatic resource management on the horizon in Java 7, this particular annotation is likely to be relatively short-lived.

Lombok annotated code:

  1. public void testCleanUp() {
  2. try {
  3. @Cleanup ByteArrayOutputStream baos = new ByteArrayOutputStream();
  4. baos.write(new byte[] {'Y','e','s'});
  5. System.out.println(baos.toString());
  6. } catch (IOException e) {
  7. e.printStackTrace();
  8. }
  9. }

Equivalent Java source code:

  1. public void testCleanUp() {
  2. try {
  3. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  4. try {
  5. baos.write(new byte[]{'Y', 'e', 's'});
  6. System.out.println(baos.toString());
  7. } finally {
  8. baos.close();
  9. }
  10. } catch (IOException e) {
  11. e.printStackTrace();
  12. }
  13. }

@Synchronized

Using the synchronized keyword on a method can result in unfortunate effects, as any developer who has worked on multi-threaded software can attest.

The synchronized keyword will lock on the current object (this) in the case of an instance method or on the class object for a static method. This means that there is the potential for code outside of the control of the developer to lock on the same object, resulting in a deadlock.

It is generally advisable to instead lock explicitly on a separate object that is dedicated solely to that purpose and not exposed in such a way as to allow unsolicited locking. Project Lombok provides the @Synchronized annotation for that very purpose.

Annotating an instance method with @Synchronized will prompt Lombok to generate a private locking field named $lock on which the method will lock prior to executing. Similarly, annotating a static method in the same way will generate a private static object named $LOCK for the static method to use in an identical fashion. A different locking object can be specified by providing a field name to the annotation's value parameter. When a field name is provided, the developer must define the property because Lombok will not generate it.

Lombok annotated code:

  1. private DateFormat format = new SimpleDateFormat("MM-dd-YYYY");
  2.  
  3. @Synchronized
  4. public String synchronizedFormat(Date date) {
  5. return format.format(date);
  6. }

Equivalent Java source code:

  1. private final java.lang.Object $lock = new java.lang.Object[0];
  2. private DateFormat format = new SimpleDateFormat("MM-dd-YYYY");
  3.  
  4. public String synchronizedFormat(Date date) {
  5. synchronized ($lock) {
  6. return format.format(date);
  7. }
  8. }

@SneakyThrows

@SneakyThrows is probably the Project Lombok annotation with the most detractors, since it is a direct assault on checked exceptions. There is a lot of disagreement with regards to the use of checked exceptions, with a large number of developers holding that they are a failed experiment. These developers will love @SneakyThrows. Those developers on the other side of the checked/unchecked exception fence will most likely view this as hiding potential problems.

Throwing IllegalAccessException would normally generate an "Unhandled exception" error if IllegalAccessException, or some parent class, is not listed in a throws clause:

Unhandled Exception

When annotated with @SneakyThrows, the error goes away.

Sneaky Throws

By default, @SneakyThrows will allow any checked exception to be thrown without declaring in the throws clause. This can be limited to a particular set of exceptions by providing an array of throwable classes ( Class) to the value parameter of the annotation.

Lombok annotated code:

  1. @SneakyThrows
  2. public void testSneakyThrows() {
  3. throw new IllegalAccessException();
  4. }

Equivalent Java source code:

  1. public void testSneakyThrows() {
  2. try {
  3. throw new IllegalAccessException();
  4. } catch (java.lang.Throwable $ex) {
  5. throw lombok.Lombok.sneakyThrow($ex);
  6. }

A look at the above code and the signature of Lombok.sneakyThrow(Throwable) would lead most to believe that the exception is being wrapped in a RuntimeException and re-thrown; however this is not the case. The sneakyThrow method will never return normally and will instead throw the provided throwable completely unaltered.

Costs and Benefits

As with any technology choice, there are both positive and negative effects of using Project Lombok. Incorporating Lombok's annotations in a project can greatly reduce the number of lines of boilerplate code that are either generated in the IDE or written by hand. This results in reduced maintenance overhead, fewer bugs, and more readable classes.

That is not to say that there are not downsides to using Project Lombok annotations in your project.

Project Lombok is largely aimed at filling gaps in the Java language. As such, there is the possibility that changes to the language will take place that preclude the use of Lombok's annotations, such as the addition of first class property support.

Additionally, when used in combination with annotation-based object-relational mapping (ORM) frameworks, the number of annotations on data classes can begin to get unwieldy. This is largely offset by the amount of code that is superseded by the Lombok annotations. However, those who shun the frequent use of annotations may choose to look the other way.

What is missing?

Project Lombok provides the delombok utility for replacing the Lombok annotations with equivalent source code. This can be done for an entire source directory via the command line.

java -jar lombok.jar delombok src -d src-delomboked

Alternatively, an Ant task is provided for incorporation into a build process.

  1. <target name="delombok">
  2. <taskdef classname="lombok.delombok.ant.DelombokTask"
  3. classpath="WebRoot/WEB-INF/lib/lombok.jar" name="delombok" ></taskdef>
  4. <mkdir dir="src-delomboked" ></mkdir>
  5. <delombok verbose="true" encoding="UTF-8" to="src-delomboked"
  6. from="src" ></delombok>
  7. </target>
  8.  

Both delombok and the corresponding Ant task come packaged in the core lombok.jar download. Along with allowing Lombok annotations to be useful in applications built using Google Web Toolkit (GWT) or other incompatible frameworks, running delombok on the Person class makes it easy to contrast the class as written using the Lombok annotations against code that includes the equivalent boilerplate inline.

  1. package com.ociweb.jnb.lombok;
  2.  
  3. import java.util.Date;
  4.  
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import lombok.NonNull;
  8.  
  9. @Data
  10. @EqualsAndHashCode(exclude={"address","city","state","zip"})
  11. public class Person {
  12. enum Gender { Male, Female }
  13.  
  14. @NonNull private String firstName;
  15. @NonNull private String lastName;
  16. @NonNull private final Gender gender;
  17. @NonNull private final Date dateOfBirth;
  18.  
  19. private String ssn;
  20. private String address;
  21. private String city;
  22. private String state;
  23. private String zip;
  24. }

The code utilizing the Project Lombok annotations is significantly more concise than the equivalent class with the boilerplate included.

  1. package com.ociweb.jnb.lombok;
  2.  
  3. import java.util.Date;
  4. import lombok.NonNull;
  5.  
  6. public class Person {
  7.  
  8. enum Gender {
  9. /*public static final*/ Male /* = new Gender() */,
  10. /*public static final*/ Female /* = new Gender() */;
  11. }
  12. @NonNull
  13. private String firstName;
  14. @NonNull
  15. private String lastName;
  16. @NonNull
  17. private final Gender gender;
  18. @NonNull
  19. private final Date dateOfBirth;
  20. private String ssn;
  21. private String address;
  22. private String city;
  23. private String state;
  24. private String zip;
  25.  
  26. public Person(@NonNull final String firstName, @NonNull final String lastName,
  27. @NonNull final Gender gender, @NonNull final Date dateOfBirth) {
  28. if (firstName == null)
  29. throw new java.lang.NullPointerException("firstName");
  30. if (lastName == null)
  31. throw new java.lang.NullPointerException("lastName");
  32. if (gender == null)
  33. throw new java.lang.NullPointerException("gender");
  34. if (dateOfBirth == null)
  35. throw new java.lang.NullPointerException("dateOfBirth");
  36. this.firstName = firstName;
  37. this.lastName = lastName;
  38. this.gender = gender;
  39. this.dateOfBirth = dateOfBirth;
  40. }
  41.  
  42. @NonNull
  43. public String getFirstName() {
  44. return firstName;
  45. }
  46.  
  47. public void setFirstName(@NonNull final String firstName) {
  48. if (firstName == null)
  49. throw new java.lang.NullPointerException("firstName");
  50. this.firstName = firstName;
  51. }
  52.  
  53. @NonNull
  54. public String getLastName() {
  55. return lastName;
  56. }
  57.  
  58. public void setLastName(@NonNull final String lastName) {
  59. if (lastName == null)
  60. throw new java.lang.NullPointerException("lastName");
  61. this.lastName = lastName;
  62. }
  63.  
  64. @NonNull
  65. public Gender getGender() {
  66. return gender;
  67. }
  68.  
  69. @NonNull
  70. public Date getDateOfBirth() {
  71. return dateOfBirth;
  72. }
  73.  
  74. public String getSsn() {
  75. return ssn;
  76. }
  77.  
  78. public void setSsn(final String ssn) {
  79. this.ssn = ssn;
  80. }
  81.  
  82. public String getAddress() {
  83. return address;
  84. }
  85.  
  86. public void setAddress(final String address) {
  87. this.address = address;
  88. }
  89.  
  90. public String getCity() {
  91. return city;
  92. }
  93.  
  94. public void setCity(final String city) {
  95. this.city = city;
  96. }
  97.  
  98. public String getState() {
  99. return state;
  100. }
  101.  
  102. public void setState(final String state) {
  103. this.state = state;
  104. }
  105.  
  106. public String getZip() {
  107. return zip;
  108. }
  109.  
  110. public void setZip(final String zip) {
  111. this.zip = zip;
  112. }
  113.  
  114. @java.lang.Override
  115. public java.lang.String toString() {
  116. return "Person(firstName=" + firstName + ", lastName=" + lastName +
  117. ", gender=" + gender + ", dateOfBirth=" + dateOfBirth +
  118. ", ssn=" + ssn + ", address=" + address + ", city=" + city +
  119. ", state=" + state + ", zip=" + zip + ")";
  120. }
  121.  
  122. @java.lang.Override
  123. public boolean equals(final java.lang.Object o) {
  124. if (o == this) return true;
  125. if (o == null) return false;
  126. if (o.getClass() != this.getClass()) return false;
  127. final Person other = (Person)o;
  128. if (this.firstName == null
  129. ? other.firstName != null
  130. : !this.firstName.equals(other.firstName))
  131. return false;
  132. if (this.lastName == null
  133. ? other.lastName != null
  134. : !this.lastName.equals(other.lastName))
  135. return false;
  136. if (this.gender == null
  137. ? other.gender != null
  138. : !this.gender.equals(other.gender))
  139. return false;
  140. if (this.dateOfBirth == null
  141. ? other.dateOfBirth != null
  142. : !this.dateOfBirth.equals(other.dateOfBirth))
  143. return false;
  144. if (this.ssn == null
  145. ? other.ssn != null
  146. : !this.ssn.equals(other.ssn))
  147. return false;
  148. return true;
  149. }
  150.  
  151. @java.lang.Override
  152. public int hashCode() {
  153. final int PRIME = 31;
  154. int result = 1;
  155. result = result * PRIME +
  156. (this.firstName == null ? 0 : this.firstName.hashCode());
  157. result = result * PRIME +
  158. (this.lastName == null ? 0 : this.lastName.hashCode());
  159. result = result * PRIME +
  160. (this.gender == null ? 0 : this.gender.hashCode());
  161. result = result * PRIME +
  162. (this.dateOfBirth == null ? 0 : this.dateOfBirth.hashCode());
  163. result = result * PRIME +
  164. (this.ssn == null ? 0 : this.ssn.hashCode());
  165. return result;
  166. }
  167. }
  168.  

Keep in mind that this is not just code that normally has to be written, but must also be read by maintaining developers. This means that, when using the annotations provided by Project Lombok, developers do not have to wade through countless lines of code in order to determine if the class in question is a simple data class or something more sinister.

Limitations

While Project Lombok does some dramatic things to make a developer's life easier, it has its limitations. Browsing the issues list will quickly illuminate some of the current shortcomings, most of which are minor.

One important problem is the inability to detect the constructors of a superclass. This means that if a superclass has no default constructor, any subclasses cannot use the @Data annotation without explicitly writing a constructor to make use of the available superclass constructor. Since Project Lombok respects any methods that match the name of a method to be generated, the majority of its feature shortcomings can be overcome using this approach.

Controversy

A number of issues have been raised against the use of Project Lombok. The most common argument holds that annotations were intended for "meta" information and are not to be used in such a way that would leave the codebase unable to be compiled were they removed. This is certainly the situation with Lombok annotations. New methods result from these annotations that are intended to be used not only by a framework, but by other parts of the application. Project Lombok's development-time support is its bread and butter, but this does have consequences, not the least of which is limited IDE support.

As previously stated, @SneakyThrows is bound to stir up the age-old argument over checked and unchecked exceptions. Opinions on this debate are often almost religious in their ferocity. As such, the arguments against the use of @SneakyThrows are also sure to excite fervor among the passionate.

Another point of contention is the implementation of both the code supporting IDE integration as well as the javac annotation processor. Both of these pieces of Project Lombok make use of non-public APIs to accomplish their sorcery. This means that there is a risk that Project Lombok will be broken with subsequent IDE or JDK releases.

Here is how one of the project founders, Reinier Zwitserloot described the situation:

"It's a total hack. Using non-public API. Presumptuous casting (knowing that an annotation processor running in javac will get an instance of JavacAnnotationProcessor, which is the internal implementation of AnnotationProcessor (an interface), which so happens to have a couple of extra methods that are used to get at the live AST). On eclipse, it's arguably worse (and yet more robust) – a java agent is used to inject code into the eclipse grammar and parser class, which is of course entirely non-public API and totally off limits. If you could do what lombok does with standard API, I would have done it that way, but you can't. Still, for what its worth, I developed the eclipse plugin for eclipse v3.5 running on java 1.6, and without making any changes it worked on eclipse v3.4 running on java 1.5 as well, so it's not completely fragile."

Summary

Project Lombok is a powerful tool for the pragmatic developer. It provides a set of useful annotations for eliminating a tremendous amount of boilerplate code from your Java classes. In the best cases, a mere five characters can replace hundreds of lines of code. The result is Java classes that are clean, concise, and easy to maintain.

These benefits do come with a cost however. Using Project Lombok in an IntelliJ IDEA shop is simply not yet a viable option. There is a risk of breakage with IDE and JDK upgrades, as well as controversy surrounding the goals and implementation of the project.

What all this translates to is no different than what must be considered for any technology choice. There are always gains to be made and losses to be had. The question is simply whether or not Project Lombok can provide more value than cost for the project at hand. If nothing else, Project Lombok is sure to inject some new life into the discussion of language features that have withered on the vine thus far, and that is a win from any perspective.

References

Thanks to Mark Volkmann, Eric Burke, Mario Aquino, and Lance Finney for reviewing and providing suggestions for this article, and a special thanks to Mark Volkmann for introducing me to Project Lombok.



Software Engineering Tech Trends (SETT) is a regular publication featuring emerging trends in software engineering.


secret