Skip to content
forked from skinny85/jilt

Java annotation processor for auto-generating Builder (including Type-Safe Builder) classes

License

Notifications You must be signed in to change notification settings

rigd-loxia/jilt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Jilt License Download Build Status

Jilt is a Java annotation processor used for automatically generating classes that implement the Builder design pattern.

Jilt's "killer features" compared to other tools in this same space are:

  • Support for the Type-Safe (sometimes also called Staged, or Telescopic, or Step) variant of the Builder pattern. For more information on the Type-Safe Builder pattern, check out my blog article on the subject.
  • The capability to generate Builders for any class, and without requiring any modifications to the target classes' source code.
  • Seamless interoperability with other annotation processors, most noticeably Lombok.

Jilt is purely a code generator - it does not add any overhead, nor any runtime dependencies, to your code.

Example

Given this class:

import org.jilt.Builder;

@Builder
public final class Person {
    public final String name;
    public final boolean isAdult;
    
    public Person(String name, boolean isAdult) {
        this.name = name;
        this.isAdult = isAdult;
    }
}

...Jilt will generate the following Builder code:

public class PersonBuilder {
    public static PersonBuilder person() {
        return new PersonBuilder();
    }

    private String name;
    private boolean isAdult;

    public PersonBuilder name(String name) {
        this.name = name;
        return this;
    }
    
    public PersonBuilder isAdult(boolean isAdult) {
        this.isAdult = isAdult;
        return this;
    }
    
    public Person build() {
        return new Person(name, isAdult);
    }
}

Check out the documentation below for ways to customize what Jilt generates.

Getting Jilt

Jilt is available from the Maven Central repository.

Example Maven settings:

<dependencies>
    <dependency>
        <groupId>cc.jilt</groupId>
        <artifactId>jilt</artifactId>
        <version>1.1</version>
        <scope>provided</scope> <!-- Jilt is not needed at runtime -->
    </dependency>
</dependencies>

Example Gradle settings:

repositories {
    mavenCentral()
}

dependencies {
    // ...
    compileOnly 'cc.jilt:jilt:1.1' // Jilt is not needed at runtime
    annotationProcessor 'cc.jilt:jilt:1.1' // you might also need this dependency in newer Gradle versions
}

If you're not using dependency managers, you can download the JAR directly (it's distributed as a self-contained JAR, you don't need any additional dependencies for it) and add it to your classpath.

Customizing the generated code

@Builder on classes

When you place the @Builder annotation on the class itself, the resulting Builder will have as properties all instance fields of that class (you can mark a field with the @Builder.Ignore annotation to exclude it from being added to the Builder), and will build the instance of that class assuming it has a constructor taking all of those properties as arguments, in the same order they were declared in the class. This allows you to easily use Jilt with Lombok; for instance, the above example could have been rewritten as:

import org.jilt.Builder;
import lombok.Data;

@Builder
@Data
public final class Person {
    private final String name;
    private final boolean isAdult;
}
@Builder on constructors

You can also place the annotation on a constructor; in that case, the Builder properties will be the constructor parameters, and the instance will be created by calling the constructor. So, this code will produce the same Builder as the above example:

import org.jilt.Builder;

public final class Person {
    public final String name;
    public final boolean isAdult;
    private int thisFieldWillBeIgnoredByTheBuilder;

    @Builder
    public Person(String name, boolean isAdult) {
        this.name = name;
        this.isAdult = isAdult;
    }
}
@Builder on static methods

Finally, you can also place the @Builder annotation on a (static) method. In that case, the built class will be the return type of the method, and the Builder properties will be all of the method parameters, in the same order as they were declared in the method. The instance will be created by making a call to the annotated method.

This is the most flexible way of generating Builders in Jilt - you have full control of the code constructing the final instance, which allows you to do things like:

  • Generate Builders for classes without modifying their source code, or for classes that you don't control (from libraries, for example).
  • Generate Builders for classes with non-standard ways to construct them (for example, those that use setters instead of constructor parameters).
  • Customize the construction behavior - for example, add validations, or default property values.

Here is an example illustrating the possibilities:

import org.jilt.Builder;

import java.util.Date;

public abstract class DateFactory {
    @Builder(packageName = "com.example")
    public static Date make(int month, int day, int year) {
        // validation
        if (month < 1 || month > 12)
            throw new IllegalArgumentException("month must be between 1 and 12");

        // default value
        if (day == 0)
            day = 1;

        // non-standard construction
        return new Date(year + 1900, month - 1, day);
    }
}

And you can use the Builder like so:

import com.example.DateBuilder;
import org.junit.Assert;
import org.junit.Test;

import java.util.Date;

public class DateFactoryTest {
    @Test
    public void use_date_builder() throws Exception {
        Date date = DateBuilder.date()
                .month(12)
                .year(23)
                .build();

        Assert.assertEquals(11, date.getMonth());
        Assert.assertEquals(1, date.getDay());
        Assert.assertEquals(1923, date.getYear());
    }
}
Type-Safe Builders

All of the Builders shown so far were "regular" Builders. Using the @Builder's style attribute, you can instead generate a Type-Safe (also called Staged, or Telescopic, or Step) Builder by setting style to BuilderStyle.TYPE_SAFE.

A Type-Safe Builder generates interfaces for each property of the Builder, and enforces that they have to be initialized before constructing the final instance. The order of construction will be exactly as the order of the properties in the Builder.

For a longer and more in-depth introduction to the Type-Safe Builder pattern variant, check out my blog article on the subject.

So, this slightly modified code from above:

import org.jilt.Builder;
import org.jilt.BuilderStyle;

@Builder(style = BuilderStyle.TYPE_SAFE)
public final class Person {
    public final String name;
    public final boolean isAdult;

    public Person(String name, boolean isAdult) {
        this.name = name;
        this.isAdult = isAdult;
    }
}

...generates a Builder that can be only used as follows:

Person person = PersonBuilder.person()
    .name("John Doe") // this has to be 'name' for the code to compile
    .isAdult(true) // this has to be 'isAdult' for the code to compile
    .build(); // this has to be 'build' for the code to compile
Optional properties

When using Type-Safe Builders, there are often properties that the client can, but doesn't have to, provide in order to construct a valid instance of the target class - the property could be optional, it could have some default, etc.

When using the TYPE_SAFE Builder style, you can mark a field or constructor/static method parameter (depending on where you placed the @Builder annotation) optional by annotating it with the @Opt annotation. All optional Builder properties will be grouped into a single interface (the same containing the build method), which means the client can (but doesn't have to) provide them, after all of the required properties have been set. If a value for an optional property is not set, Jilt will construct the instance with the 0-value for that property's type (0 for int and other numeric types,null for reference types, etc.) as the value of the property.

For example, a Builder for this class:

import org.jilt.Builder;
import org.jilt.BuilderStyle;
import org.jilt.Opt;

public final class User {
    public final String email, username, firstName, lastName, displayName;

    @Builder(style = BuilderStyle.TYPE_SAFE)
    public User(String email, @Opt String username, String firstName,
                String lastName, @Opt String displayName) {
        this.email = email;
        this.username = username == null ? email : username;
        this.firstName = firstName;
        this.lastName = lastName;
        this.displayName = displayName == null
           ? firstName + " " + lastName
           : displayName;
   }
}

...can be used as follows:

User user = UserBuilder.user()
    .email("email@example.com") // this has to be 'email' to compile
    .firstName("John") // this is not 'username', because that is an optional property
    .lastName("Doe") // this has to be 'lastName' to compile
    .displayName("johnnyd") // this could be 'username', or skipped
    .build();
Type-Safe with ungrouped optionals style

There is one more Builder style - TYPE_SAFE_UNGROUPED_OPTIONALS. It's very similar to TYPE_SAFE - it only differs in the treatment of optional properties. Instead of bundling them together at the end of the build process like TYPE_SAFE, this style retains the original order of the properties, but allows you to 'skip' setting those that are optional, bypassing them and moving to the next required property. This is mostly useful in cases where a class has a lot of properties, but very few optional ones.

For example, for the same code as the above TYPE_SAFE example:

import org.jilt.Builder;
import org.jilt.BuilderStyle;
import org.jilt.Opt;

public final class User {
    public final String email, username, firstName, lastName, displayName;

    @Builder(style = BuilderStyle.TYPE_SAFE_UNGROUPED_OPTIONALS)
    public User(String email, @Opt String username, String firstName,
                String lastName, @Opt String displayName) {
        this.email = email;
        this.username = username == null ? email : username;
        this.firstName = firstName;
        this.lastName = lastName;
        this.displayName = displayName == null
           ? firstName + " " + lastName
           : displayName;
   }
}

...the generated TYPE_SAFE_UNGROUPED_OPTIONALS Builder can be used as follows:

User user = UserBuilder.user()
    .email("email@example.com") // this has to be 'email' to compile - required property
    .username("johnnyd") // this line could be commented out - optional property
    .firstName("John") // this has to be 'firstName' to compile - required property
    .lastName("Doe") // this has to be 'lastName' to compile - required property
    .displayName("Unknown") // this line could be commented out - optional property
    .build();
Other @Builder attributes

In addition tostyle, the @Builder annotation has a bunch of attributes that allow you to control practically all aspects of the generated Builder (all of them are optional):

  • className allows you to change the generated Builder's name. The default name is <BuiltClass>Builder.
  • packageName allows you to change the package the generated Builder will reside in. The default is for the Builder to be in the same package that the built class is in.
  • setterPrefix allows you to add a prefix to the names of the generated setter methods. The default is to not have any prefix (the setter names will be the same as the property names).
  • factoryMethod allows you to change the name of the generated static factory method for constructing Builder instances. The default is for the name to be equal to the uncapitalized name of the built class (for example, person when building a Person class).
  • buildMethod allows you to change the name of the final method invoked on the Builder to obtain an instance of the built class. The default name of that method is build.
@BuilderInterfaces annotation

When generating a Type-Safe Builder (so, when the @Builder.style attribute is set to either BuilderStyle.TYPE_SAFE or BuilderStyle.TYPE_SAFE_UNGROUPED_OPTIONALS), you can also place the @BuilderInterfaces annotation on the same element @Builder is on (so, a class, constructor, or static method). This annotation is used to customize the interfaces generated to ensure the type-safety of the resulting Builder. It has the following attributes (all of them are optional):

  • outerName allows you to change the name of the outer interface that the per-property interfaces will be generated inside of (this is in order not to pollute the global namespace). The default name is <BuiltClass>Builders.
  • packageName allows you to change the package the generated interfaces will reside in. The default is for the interfaces to reside in the same package as the one the Builder will be generated in.
  • innerNames allows you to set the pattern that will be used for naming the per-property generated interfaces. The character * in the pattern will be substituted with the (capitalized) name of the property. The default name for the interfaces is simply the (capitalized) name of its corresponding property - so, the same as the pattern "*".
  • lastInnerName allows you to change the name of the final interface - the one containing the build method, which is invoked to obtain an instance of the target class. The default name for that interface is Optionals for BuilderStyle.TYPE_SAFE Builders, and Build for BuilderStyle.TYPE_SAFE_UNGROUPED_OPTIONALS ones.

Working in an IDE

Annotation processors can be a little tricky to get working correctly in an IDE. Here are some tips for the most popular ones:

Intellij IDEA

Make sure to enable annotation processing (File -> Settings -> Build, Execution, Deployment -> Compiler -> Annotation Processors, check the box that says Enable annotation processing). Now, the code should run fine at this point, but you might still get errors in the IDE because it can't find the sources for the generated Builder classes. In that case, it might be a good idea to change the radio button labelled Store generated sources relative to in that same menu screen from Module output directory (the default) to Module content root. If you do that, make sure to mark the directories with the generated code as source directories (right click on them in the file tree -> Mark directory as -> Sources Root or Test Sources Root, the names of the directories are generated and generated_tests by default).

Eclipse

Eclipse is a lot more cumbersome. Right click on the project -> Properties -> Java Compiler (expand the submenus) -> Annotation Processing, tick the Enable project-specific settings checkbox, and then Enable annotation processing. Then, go to the Factory Path submenu, tick the Enable project-specific settings checkbox there, and add the Jilt JAR to the Factory path. Make sure that the Generated source directory is marked as a Source Folder.

License

Jilt is open-source software, released under the Apache Version 2.0 License. See the License file for details.

About

Java annotation processor for auto-generating Builder (including Type-Safe Builder) classes

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%