Builder Pattern

Builder Pattern

“Separate the construction of a complex object from its representation so that the same construction process can create different representations.”

Design Patterns: Elements of Reusable Object-Oriented Software

The Builder pattern is a classic Gang of Four creational design pattern. This pattern, similar to the other creational patterns, such as factory method and abstract factory, is concerned with the creation of objects. But why do we need another pattern to create objects? To answer this, let us first look at a problem scenario.

The Problem

Consider that you need to build a house for a customer. Now, building a house will consist a series of steps. You will start with the foundation, then the structure, and finally the roof. But, how will you do this in the programming world? This should be simple in Java- Right? You create a House class with the required fields and initialize them through a constructor, like this.

. . .
public House(String foundation, String structure, String roof){
    this.foundation = foundation;
    this.structure = structure;
    this.roof = roof;
}
. . .

This builds the house and your customer is happy. But the next customer wants the house to be painted and furnished while another wants it only painted. You now need to revisit the House class with a set of overloaded constructors, something like this.

. . .
public House(String foundation, String structure, String roof) {...}
public House(String foundation, String structure, String roof, boolean painted){...}
public House(String foundation, String structure, String roof, boolean painted, boolean furnished){...}
. . .

Although this will work, we have a flawed design. What we applied here is the telescopic constructor pattern, which is considered an anti-pattern. Though this pattern works for simple object creation with a limited number of fields, it becomes unmanageable for complex object creation. Imagine the number of constructors you will need to create a more complex house with options for plumbing, lightning, interiors, and so on. Another major problem in this design is related to constructor calls that clients need to make. It is hard and error prone to write client code when there are multiple constructors, each with a large set of parameters. In addition, readability is a major issue with such client code.

While writing such client code, you will often end up with questions, such as:

  • Which constructor should I invoke?
  • What will be the default values of the parameters if I don’t provide?
  • Does the first boolean in the constructor represents painting or furnishing?

One solution to the telescopic constructor pattern is to follow JavaBeans conventions by writing setter methods instead of a set of constructors to initialize the fields.

. . .
public void setFoundation(String foundation) {
        this.foundation = foundation;
    }
    public void setStructure(String structure) {
        this.structure = structure;
    }
    public void setRoof(String roof) {
        this.roof = roof;
    }
    public void setFurnished(boolean furnished) {
        this.furnished = furnished;
    }
    public void setPainted(boolean painted) {
        this.painted = painted;
    }    
. . .

Clients can now call the setter methods with appropriate parameters to create House objects. Also, client code are now more readable and therefore have lesser chances of errors creeping in.

Your house building business is growing and everything is going fine until a customer calls up and complains that his house collapsed during construction. On examining, you found this particular client code.

. . .
House house=new House();
house.setBasement("Concrete, brick, and stone");
house.setRoof("Concrete and reinforced steel");
house.setStructure("Concrete, mortar, brick, and reinforced steel");
house.setFurnished(true);
house.setPainted(true);
. . .

As you can see, the client code tried building the roof before the structure was in place, which means that the steps to build a house was not in the correct order. Another problem is the client having an instance of the House class in an inconsistent state. This means, if a client wants to create a House object with values for all its fields then the object will not have a complete state until all the setter methods have been called. As a result, some part of the client application might see and use a House object assuming that is already constructed while that is actually not the case.

While you might be still pondering over the existing problems on hand, imagine that a customer calls up with a requirement for a prefabricated house, another customer for a tree house, and yet another for an Igloo (a snow house). Now, here is a whole new set of problems to solve.

At this point you should consider yourself lucky because other people have faced similar problems and have come up with proven solutions. It is time to learn the classic GoF Builder pattern.

Builder Pattern

Introduction to the Builder Pattern

The builder pattern allows you to enforce a step-by-step process to construct a complex object as a finished product. In this pattern, the step-by-step construction process remains same but the finished products can have different representations. In the context of the house building example, the step-by-step process includes the steps to create the foundation, structure, and roof followed by the steps to paint and furnish a house and these steps remain the same irrespective of the type of house to build. The finished product, which is a house, can have different representations. That is, it can be a concrete house, a prefabricated house, or a tree house.

Participants in the Builder Pattern

To understand how the builder pattern works, let us solve the problems of our house building example. The main problem was that we expected the clients to perform the steps to construct a house and that too in the correct order. So, how will we address this in real life? We will hire a construction engineer who knows the process to construct houses.

The second problem was that we require different types of houses, such as concrete, prefabricated, tree house, and even Igloos. So next, we will hire builders (contractors) who specializes in building specific types of houses. A builder knows how to put things together with actual building materials, components, and parts to build a particular type of house. For example, a concrete house builder knows how to build the structure of a concrete house using concrete, brick, and stone. Similarly, a prefabricated house builder knows how to build the structure of a prefabricated house using structural steels and wooden wall panels. So from now on, whenever we need a house, the construction engineer will direct a builder to build the house.

In our application, we can model the construction engineer by creating a ConstructionEngineer class. Then we can model the builders by first creating a HouseBuilder interface and then builder classes, such as ConcreteHouseBuilder and PrefabricatedHouseBuilder that implement the HouseBuilder interface. Here, notice that we have added a layer of abstraction by providing an interface (HouseBuilder). This is because we do not want our construction engineer to be tied with a particular builder. The construction engineer should be able to direct any builder that implements the HouseBuilder interface to build a house. This will also allow us to later add new builders without making changes to the existing application code.

We can now summarize the components of the builder pattern in the context of the house building example as:

  • Product (House): A class that represents the product to create.
  • Builder (HouseBuilder): Is an interface to build the parts of a product.
  • ConcreteBuilder(ConcreteHouseBuilder and PrefabricatedHouseBuilder): Are concrete classes that implement Builder to construct and assemble parts of the product and return the finished product.
  • Director (ConstructionEngineer): A class that directs a builder to perform the steps in the order that is required to build the product.

Applying the Builder Pattern

To apply the builder pattern to the house building example, let us first create the product that the builders will construct.

House.java

package guru.springframework.gof.builder.product;

public class House {
    private String foundation;
    private String structure;
    private String roof;
    private boolean furnished;
    private boolean painted;

    public void setFoundation(String foundation) {
        this. foundation = foundation;
    }
    public void setStructure(String structure) {
        this.structure = structure;
    }
    public void setRoof(String roof) {
        this.roof = roof;
    }
    public void setFurnished(boolean furnished) {
        this.furnished = furnished;
    }
    public void setPainted(boolean painted) {
        this.painted = painted;
    }
    @Override
    public String toString() {
        return "Foundation - " + foundation + " Structure - " + structure + " Roof - " + roof +" Is Furnished? "+furnished+" Is Painted? "+painted;
    }

}

 

In the example above, we wrote a House class with five fields and their corresponding setter methods. Next, we will create the HouseBuilder interface, which is the Builder in the application. HouseBuilder.java

package guru.springframework.gof.builder.builders;

import guru.springframework.gof.builder.product.House;

public interface HouseBuilder {
    void buildFoundation();
    void buildStructure();
    void buildRoof();
    void paintHouse();
    void furnishHouse();
    House getHouse();
}

In the example above, we wrote the HouseBuilder interface to declare five methods to create the parts of the product (House). We also declared a getHouse() method that returns the finished product. We will provide the implementation of the methods in the concrete subclasses: ConcreteHouseBuilder and PrefabricatedHouseBuilder, which are the ConcreteBuilder components in the application.

ConcreteHouseBuilder.java

package guru.springframework.gof.builder.builders;

import guru.springframework.gof.builder.product.House;

public class ConcreteHouseBuilder implements HouseBuilder{
    private House house;

    public ConcreteHouseBuilder() {
        this.house = new House();
    }
    @Override
    public void buildFoundation() {
        house.setFoundation("Concrete, brick, and stone");
        System.out.println("ConcreteHouseBuilder: Foundation complete...");
    }
  @Override
    public void buildStructure(){
      house.setStructure("Concrete, mortar, brick, and reinforced steel");
      System.out.println("ConcreteHouseBuilder: Structure complete...");
  }
    @Override
    public void buildRoof(){
      house.setRoof("Concrete and reinforced steel");
        System.out.println("ConcreteHouseBuilder: Roof complete...");
    }
    @Override
    public void paintHouse(){
      house.setPainted(true);
        System.out.println("ConcreteHouseBuilder: Painting complete...");
    }
    @Override
    public void furnishHouse(){
    house.setFurnished(true);
        System.out.println("ConcreteHouseBuilder: Furnishing complete...");
    }
    public House getHouse() {
        System.out.println("ConcreteHouseBuilder: Concrete house complete...");
        return this.house;
    }


}

PrefabricatedHouseBuilder.java

package guru.springframework.gof.builder.builders;

import guru.springframework.gof.builder.product.House;

public class PrefabricatedHouseBuilder implements HouseBuilder{
    private House house;

    public PrefabricatedHouseBuilder() {
        this.house = new House();
    }
    @Override
    public void buildFoundation() {
        house.setFoundation("Wood, laminate, and PVC flooring");
        System.out.println("PrefabricatedHouseBuilder: Foundation complete...");
    }
    @Override
    public void buildStructure(){
        house.setStructure("Structural steels and wooden wall panels");
        System.out.println("PrefabricatedHouseBuilder: Structure complete...");
    }
    @Override
    public void buildRoof(){
        house.setRoof("Roofing sheets");
        System.out.println("PrefabricatedHouseBuilder: Roof complete...");
    }
    @Override
    public void paintHouse(){
        house.setPainted(false);
        System.out.println("PrefabricatedHouseBuilder: Painting not required...");
    }
    @Override
    public void furnishHouse(){
        house.setFurnished(true);
        System.out.println("PrefabricatedHouseBuilder: Furnishing complete...");
    }
    public House getHouse() {
        System.out.println("PrefabricatedHouseBuilder: Prefabricated house complete...");
        return this.house;
    }
}

In the above examples, we first wrote the ConcreteHouseBuilder class. In the constructor of this class, we created a House object. We then implemented the methods declared in the HouseBuilder interface to create the parts of a concrete house through calls to the setter methods of the House object. Finally, we implemented the getHouse() method to return the final House object that represents a concrete house. Similarly, we wrote the PrefabricatedHouseBuilder class to create the parts of a prefabricated house and return the final House object that represents a prefabricated house.

With these two classes in place, we are almost ready to “create different representations” of a house: concrete and prefabricated. But, we are yet to define the “same construction process“. We will do it next in the ConstructionEngineer class, which is the Director in the application.

ConstructionEngineer.java

package guru.springframework.gof.builder.director;

import guru.springframework.gof.builder.builders.HouseBuilder;
import guru.springframework.gof.builder.product.House;

public class ConstructionEngineer {
    private HouseBuilder houseBuilder;
    public ConstructionEngineer(HouseBuilder houseBuilder){
        this.houseBuilder = houseBuilder;
    }

    public House constructHouse() {
        this.houseBuilder.buildFoundation();
        this.houseBuilder.buildStructure();
        this.houseBuilder.buildRoof();
        this.houseBuilder.paintHouse();
        this.houseBuilder.furnishHouse();
        return this.houseBuilder.getHouse();

    }
}

In the above example, we wrote the ConstructionEngineer class with a constructor that accepts a HouseBuilder object. In the constructHouse() method, we made a series of calls on the HouseBuilder object in a certain order and returned the final House object to the caller. Notice that the ConstructionEngineer class is not tied to any concrete builder. Also, this class uses the same construction process in the constructHouse() method irrespective of the type of concrete builder provided to it at run time. This allows us to add new concrete builder classes without making any changes to the construction process. Now that our house building example is ready, let us write a unit test to observe the builder pattern at work. ConstructionEngineerTest.java

package guru.springframework.gof.builder.director;

import guru.springframework.gof.builder.builders.HouseBuilder;
import guru.springframework.gof.builder.builders.ConcreteHouseBuilder;
import guru.springframework.gof.builder.builders.PrefabricatedHouseBuilder;
import guru.springframework.gof.builder.product.House;
import org.junit.Test;

public class ConstructionEngineerTest {

    @Test
    public void testConstructHouse() throws Exception {
        HouseBuilder concreteHouseBuilder = new ConcreteHouseBuilder();
        ConstructionEngineer engineerA = new ConstructionEngineer(concreteHouseBuilder);
        House houseA = engineerA.constructHouse();
        System.out.println("House is: "+houseA);
        PrefabricatedHouseBuilder prefabricatedHouseBuilder = new PrefabricatedHouseBuilder();
        ConstructionEngineer engineerB = new ConstructionEngineer(prefabricatedHouseBuilder);
        House houseB = engineerB.constructHouse();
        System.out.println("House is: "+houseB);
    }
}

 

As you can see in the example above, a client is now insulated from the object creation process. A client only needs to provide the Director a ConcreteBuilder to use. It is the responsibility of the Director to instruct the ConcreteBuilder on the construction process and the ConcreteBuilder in turn will create the finished product. Finally, the client receives the finished product from the Director.
When you run the code above, you will see this output:

 T E S T S
-------------------------------------------------------
Running guru.springframework.gof.builder.director.ConstructionEngineerTest
ConcreteHouseBuilder: Foundation complete...
ConcreteHouseBuilder: Structure complete...
ConcreteHouseBuilder: Roof complete...
ConcreteHouseBuilder: Painting complete...
ConcreteHouseBuilder: Furnishing complete...
ConcreteHouseBuilder: Concrete house complete...
House is: Foundation - Concrete, brick, and stone Structure - Concrete, mortar, brick, and reinforced steel Roof - Concrete and reinforced steel Is Furnished? true Is Painted? true
PrefabricatedHouseBuilder: Foundation complete...
PrefabricatedHouseBuilder: Structure complete...
PrefabricatedHouseBuilder: Roof complete...
PrefabricatedHouseBuilder: Painting not required...
PrefabricatedHouseBuilder: Furnishing complete...
PrefabricatedHouseBuilder: Prefabricated house complete...
House is: Foundation - Wood, laminate, and PVC flooring Structure - Structural steels and wooden wall panels Roof - Roofing sheets Is Furnished? true Is Painted? false
Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.119 sec - in guru.springframework.gof.builder.director.ConstructionEngineerTest

Conclusion

If you are familiar with the abstract factory pattern, you might have observed that both the abstract factory and builder patterns are similar, as both can be used to abstract object creation. But there are distinct differences between the two. While abstract factory emphasizes on creating a family of related objects in one go, builder is about creating an object through a step-by-step construction process and returning the object as the final step. In short abstract factory is concerned with what is made, while the builder with how it is made. So as you go further into enterprise application development, whenever you need to create complex objects independently of the construction algorithm turn to the classic GoF Builder Pattern!

17 comments on “Builder Pattern

  1. August 4, 2015 at 4:14 pm

    Hello. Thank you very much for your tutorial. It is easy to understand and the example is very intuitive. However, I would like know more about this pattern.
    In order to use the SpringFramework to implement the pattern. Can you explain an example with dependency injection (XML or Annotation) ?
    Besides, I think it might be interesting other example with a product more complex. For example a object “House” with other dependency objects.

    Thank you in advance

    Reply
    • August 4, 2015 at 5:19 pm

      That’s a good idea. I’ll try to work that into a future post.

      Reply
  2. April 4, 2017 at 3:59 am

    Great explanation, thank you

    Reply
  3. August 16, 2017 at 1:04 pm

    Nice explanation but can you expand the example above to create a MobileHomeBuilder that extends a PrefabricatedHouseBuilder (even if mobile homes typically don’t have foundations) in order to include an additional object, such as CarPort, for the mobile home? This is where I run into problems: builder pattern with inheritance. I’ve spent nearly two days researching how to effectively do this and apply the DRY principle as well. Looked at many examples including https://stackoverflow.com/questions/17164375/subclassing-a-java-builder-class and http://egalluzzo.blogspot.co.at/2010/06/using-inheritance-with-fluent.html but all seem to rely on an abstract class. There must be a proven approach (somewhere) to allow use of a builder for (ex) ClassC that extends ClassB (and utilizes ClassB’s builder), which extends ClassA (and utilizes ClassA’s builder) – and one where I can build either a ClassA, ClassB, or ClassC object (via their respective builders). Any help would be greatly appreciated.

    Reply
  4. November 14, 2017 at 10:03 pm

    One small doubt, the Builder class could be more generic like – BuildingBuilder which gives concrete classes like the various HouseBuilders, might be an ApartmentBuilder , WareHouseBuilder etc???

    What i meant is when I compare to the example in GOF, where the products built by various concrete builders are quite unique but here you have shown the end product as just one uniform product – House. My case could be correct right?

    The products built in the end could vary drastically ?

    Even in the Implementation section of Pattern in GOF book, point 2 speaks about why there are no abstract classes for the product!

    Reply
  5. December 6, 2018 at 11:42 am

    Nice explanation with example.

    Reply
  6. December 16, 2018 at 10:34 pm

    Thanks, sir
    This tutorial is so amazing .
    Success more and more .

    Reply
  7. January 24, 2019 at 1:57 am

    Please can you show fluent style of builder pattern with recursive generics too.

    Reply
  8. May 2, 2019 at 4:46 am

    Awesome , very simple and best explanation. if this sample project can be loaded to git and pass the git url , much appreciated.

    Reply
  9. December 16, 2019 at 1:20 pm

    This looks more like a behavioral pattern. Builder pattern should be used to create a complex object.

    Eg: 1) https://medium.com/@ajinkyabadve/builder-design-patterns-in-java-1ffb12648850
    2) https://dzone.com/articles/the-builder-pattern-for-class-with-many-constructo
    3) http://www.grahambrooks.com/2017/06/19/builder-antipatterns.html

    Reply
    • June 9, 2020 at 10:08 am

      This does not look like a Builder Pattern, ideally a builder pattern tries to solve a problem of multiple attributes being there by making the object creation that much more complex. It uses static inner class and a build method. Not sure if i saw that here

      Reply
      • October 1, 2021 at 8:45 am

        Multiple patterns look the same. But for more clarity refer “Design Patterns: Elements of Reusable Object-Oriented Software”. It looks like he has given a great explanation.

        Reply
  10. April 21, 2020 at 4:33 pm

    ConcreteHouseBuilder will always build a house that is painted and furnished.
    While PrefabricatedHouseBuilder will always build a house that is not painted and furnished.
    How different representations can be achieved here.

    Reply
  11. May 13, 2020 at 7:33 am

    Hi, As i see the HouseBuilder interface. If the requirement is changed and some people want with tiles and so with stones…like some distinct requirement. So if we have to create another interface in order to follow SOILD design principle(I). how to do in that case?

    Reply
  12. June 9, 2020 at 10:10 am

    This does not look like a Builder Pattern, Builder pattern tries to solve a problem wherein there are numerous attributes, there by making the object creation complex. It usually has Static inner classes and a build method. Please let me know in case I got it wrong.

    Reply
  13. December 23, 2021 at 7:59 am

    Explained very well with a perfect example Thank you.

    Reply

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.