Spark Builder Generator

Add this URL to your Eclipse Installation to reach this solution's update site.

2023-09 (4.29), 2023-06 (4.28), 2023-03 (4.27), 2022-12 (4.26), 2022-09 (4.25), 2022-06 (4.24), 2022-03 (4.23), 2021-12 (4.22), 2021-09 (4.21), 2021-06 (4.20), 2021-03 (4.19), 2020-12 (4.18), 2020-09 (4.17), 2020-06 (4.16), 2020-03 (4.15), 2019-12 (4.14), 2019-09 (4.13), 2019-06 (4.12), 2019-03 (4.11), 2018-12 (4.10), 2018-09 (4.9), Photon (4.8), Oxygen (4.7), Neon (4.6), Mars (4.5), Luna (4.4), Kepler (4.3), Juno (4.2, 3.8), Previous to Juno (<=4.1), 2023-12 (4.30), 2024-03 (4.31)

https://helospark.com/eclipse_plugin/SparkBuilderGeneratorPlugin

Learn more...
Solution Description

Generates a builder according to the GoF pattern for Java domain objects.

Features

  • Generates a builder with custom name patterns
  • Can generate staged builder
  • Capable of regenerating the builder
  • Compatible with most version of Eclipse
  • Highly configurable, check the plugin's preferences page
  • Capable of generate builder methods for visible fields in superclass
  • Encourages and supports null-safe programming practices
  • Open source (with very permissible MIT license)

Usage

To invoke the generation have a Java file active and press either the icon on the toolbar (the hammer) or Ctrl+Shift+B.
You can click the small arrow next to the main icon to generate a different builder type (like staged builder), if you usually generate a certain kind of builder, set the default builder in the preferences page.
You can set the preferences under: Window->Preferences->Java->Spark Builder Generator

Example result:

  public class Clazz {
        private Integer firstField;
        private Long secondField;
        @Generated("SparkTools")
        private Clazz(Builder builder) {
            this.firstField = builder.firstField;
            this.secondField = builder.secondField;
        }
        /**
         * Creates builder to build {@link Clazz}.
         * @return created builder
         */
        @Generated("SparkTools")
        public static Builder builder() {
            return new Builder();
        }
        /**
         * Builder to build {@link Clazz}.
         */
        @Generated("SparkTools")
        public static class Builder {
            private Integer firstField;
            private Long secondField;

            private Builder() {
            }

            /**
            * Builder method for firstField parameter.
            * @return builder
            */
            @Nonnull
            public Builder withFirstField(@Nonnull Integer firstField) {
                this.firstField = firstField;
                return this;
            }

            /**
            * Builder method for secondField parameter.
            * @return builder
            */
            @Nonnull
            public Builder withSecondField(@Nonnull Long secondField) {
                this.secondField = secondField;
                return this;
            }

            /**
            * Builder method of the builder.
            * @return built class
            */
            @Nonnull
            public Clazz build() {
                return new Clazz(this);
            }
        }
    }

Release notes

0.0.5 Added handling for code style prefix and suffix, see Github issue 5

0.0.6 Added staged builder support., see Github issue 4 Staged builder allows you to verify that all of the mandatory fields are set at compile time.

0.0.7 Option to add visible fields from superclasses to the builder, see Github issue 7

0.0.8 Fixed regression bug that was introduced in 0.0.7. While collection visible fields from superclasses, under some Eclipse configurations IllegalArgumentException occurred during java.lang.Object parsing.

0.0.9 Added option to generate builder to selected class (in case of nested classes, or multiple classes in a single file), see Github issue 10 Improvements to previous Builder class removing logic

0.0.10 Added the option to select which fields are generated in the builder, see Github issue 8
Fixed a small bug that deleted the previous builder when pressing the cancel button on the staging builder generator dialog Added MIT license file to plugin's site.xml, so it will show up on installation

0.0.11 Initialize Optional value to Optional.empty() to follow nullsafe programming practices
Initialize Collections with empty collections via java.util.Collections class
Various bugfixes related to overriding previous builder
Logging improvement

0.0.12 Generate @param tag to the builder's "with" methods, see Github issue 28

0.0.13 Add fields from superclass' constructor to the builder, see Github issue 30

0.0.14 Add the ability to create a builder based on an already existing instance, see Github issue 33
Dialog UX update

0.0.15 Add builder fields for private fields in superclass that have setters, see Github issue 35

0.0.16 Generate Jackson deserialize annotations to the builder, see Github issue 37

0.0.17 Generate default constructor, see Github issue 39

0.0.18 Fixed dialog issue when combined with DevStyle Darkest Dark plugin Github issue 41
Also made dialogs more responsive
Updated icon

0.0.19 Fixed ClassCastException when Java file includes an enum as the first type. Github issue 44
Made builder not generate @JsonPOJOBuilder annotation when the default builder names are not overridden

0.0.20 Fixed regression issue introduced on older Eclipse version due to 0.0.19. Github issue 46

0.0.21 Option to generate public constructor for regular builder that includes mandatory fields. Github issue 49

0.0.22 Fixing incorrect field naming with underscore prefix. Github issue 53

0.0.23 Add option to keep custom methods in the builderclass, when the builder is regenerated, Github issue 57

0.0.24 Add option to initialize builder fields with default value from the class' field assignment. Github issue 60

0.0.25 Fix default value initialization based on superclass' field assignment. Github issue 62

0.0.26 Fix copy constructor when superclass field is not accessible from builder. Github issue 64

0.0.27 Add option to use jakarta.annotation package instead of the old javax.annotation. Github issue 66

0.0.28 Add support for record types. Github issue 69

Troubleshooting installation failure

Here are some common reasons installation fails, and steps to resolve

Connection timeout

This is a temporary problem, while accessing the update site. The server most of the times will be available again in a couple of minutes.

  • You may try the FTP download site (see below)

For any other failure please contact me in the comments or Github.

Installing from backup

In case HTTPS update site is unavailable, you can install jar file from Mediafire backup:
Latest backup (entire update site: www.mediafire.com/folder/ya4g0y69b24vu/plugins)
Locate the jar file, you wish to install (probably the latest), and copy it to your Eclipse's dropin folder.

Additional information:

For feature request, bug reports please use the GitHub page: https://github.com/helospark/SparkBuilderGenerator

Categories: Tools

Additional Details

Eclipse Versions: 2023-09 (4.29), 2023-06 (4.28), 2023-03 (4.27), 2022-12 (4.26), 2022-09 (4.25), 2022-06 (4.24), 2022-03 (4.23), 2021-12 (4.22), 2021-09 (4.21), 2021-06 (4.20), 2021-03 (4.19), 2020-12 (4.18), 2020-09 (4.17), 2020-06 (4.16), 2020-03 (4.15), 2019-12 (4.14), 2019-09 (4.13), 2019-06 (4.12), 2019-03 (4.11), 2018-12 (4.10), 2018-09 (4.9), Photon (4.8), Oxygen (4.7), Neon (4.6), Mars (4.5), Luna (4.4), Kepler (4.3), Juno (4.2, 3.8), Previous to Juno (<=4.1), 2023-12 (4.30), 2024-03 (4.31)

Platform Support: Windows, Mac, Linux/GTK

Development Status: Production/Stable

Date Created: Sunday, October 23, 2016 - 07:09

License: MIT

Date Updated: Friday, October 6, 2023 - 10:51

Submitted by: Helo Spark

Date Ranking Installs Clickthroughs
April 2024 132/671 200 10
March 2024 141/694 252 7
February 2024 354/687 26 10
January 2024 192/691 125 26
December 2023 123/671 275 14
November 2023 129/686 311 22
October 2023 173/673 183 22
September 2023 189/663 137 16
August 2023 167/673 169 21
July 2023 193/668 121 16
June 2023 193/669 126 12
May 2023 181/671 154 20
View Data for all Listings

Unsuccessful Installs

Unsuccessful Installs in the last 7 Days: 2

Download last 500 errors (CSV)

Marketplace Drag to Install Button

By adding the following code below to your website you will be able to add an install button for Spark Builder Generator.

HTML Code:

Markdown Syntax:

Output:

Drag to your running Eclipse* workspace. *Requires Eclipse Marketplace Client

Reviews Add new review

Amazing Tool,

is possible to add an option to also generate jaxonannotation on top of @Generated ?

something like this:

@JsonDeserialize(builder=TestBean.Builder.class)
public class TestBean implements Serializable{

    private String app;
    private TestInneer inner;

    @Generated("SparkTools")
    private TestBean(Builder builder) {
        this.app = builder.app;
        this.inner = builder.inner;
    }

    public String getApp() {
        return app;
    }
    public void setApp(String app) {
        this.app = app;
    }
    public TestInneer getInner() {
        return inner;
    }
    public void setInner(TestInneer inner) {
        this.inner = inner;
    }
    /**
     * Creates builder to build {@link TestBean}.
     * @return created builder
     */
    @Generated("SparkTools")
    @JsonCreator
    public static Builder builder() {
        return new Builder();
    }
    /**
     * Builder to build {@link TestBean}.
     */
    @Generated("SparkTools")
    @JsonPOJOBuilder(buildMethodName = "build", withPrefix = "")
    public static final class Builder {
        private String app;
        private TestInneer inner;

        private Builder() {
        }

        public Builder app(String app) {
            this.app = app;
            return this;
        }

        public Builder inner(TestInneer inner) {
            this.inner = inner;
            return this;
        }

        public TestBean build() {
            return new TestBean(this);
        }
    }

 

Tanks !

In reply to by Pier Luigi Ambrosini

Hey Pier,

Jackson annotation support is released with version 0.0.16.

Note, that it is not enabled by default, enable it in the preferences with option "Add Jackson deserialize (@jsondeserialize, @jsonpojobuilder) annotation" to generate for all builders or enable dialog for regular builder generation and you can select "Add Jackson deserialize annotation" to generate the annotations casebycase basis.

Please update and try if everything is working as expected

Works nice, except for inheritance: fields of inherited classes are ignored, thus the created code does not compile.