2018-11-09 17:19:45 +08:00
|
|
|
= Spring Initializr image:https://ci.spring.io/api/v1/teams/initializr/pipelines/initializr/jobs/build/badge["Build Status", link="https://ci.spring.io/teams/initializr/pipelines/initializr?groups=Build"] image:https://badges.gitter.im/spring-io/initializr.svg[link="https://gitter.im/spring-io/initializr?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge"]
|
2016-03-21 17:23:10 +08:00
|
|
|
|
2015-01-17 17:29:26 +08:00
|
|
|
:boot-doc: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle
|
|
|
|
:code: https://github.com/spring-io/initializr/blob/master
|
2017-02-03 15:02:16 +08:00
|
|
|
:docs: http://docs.spring.io/initializr/docs/current-SNAPSHOT/reference
|
2018-11-07 16:57:31 +08:00
|
|
|
:service: https://github.com/spring-io/start.spring.io
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2016-06-30 19:30:00 +08:00
|
|
|
Spring Initializr provides an extensible API to generate quickstart projects. It also
|
2018-02-01 22:33:52 +08:00
|
|
|
provides a configurable service (you can see our default instance at
|
|
|
|
link:https://start.spring.io[]). It provides a simple web UI to configure the project
|
2016-04-08 17:56:39 +08:00
|
|
|
to generate and endpoints that you can use via plain HTTP.
|
2015-01-16 20:14:20 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
Spring Initializr also exposes an endpoint that serves its metadata in a well-known
|
|
|
|
format to allow third-party clients to provide the necessary assistance.
|
2015-01-16 20:14:20 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
Finally, Initializr offers a configuration structure to define all the aspects
|
|
|
|
related to the project to generate: list of dependencies, supported java and boot
|
2018-11-07 16:57:31 +08:00
|
|
|
versions, etc. Check {service}[the companion project] that defines
|
|
|
|
https://start.spring.io and, in particular, the
|
|
|
|
{service}/blob/master/src/main/resources/application.yml[configuration of our instance]
|
|
|
|
for an example. Such configuration is also described in details in the documentation.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2018-11-07 16:57:31 +08:00
|
|
|
NOTE: Check the https://github.com/spring-io/initializr/milestones[milestones page] for an
|
|
|
|
overview of the changes.
|
2017-02-03 15:00:37 +08:00
|
|
|
|
|
|
|
== Installation and Getting Started
|
2019-01-29 22:17:44 +08:00
|
|
|
The reference documentation is available in {docs}/html/[HTML format].
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2016-04-08 17:56:39 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
== Modules
|
2016-04-08 17:56:39 +08:00
|
|
|
Spring Initializr has the following modules:
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
* `initializr-generator`: standalone project generation library that can be reused
|
|
|
|
in many environments (including embedded in your own project)
|
2016-04-08 17:56:39 +08:00
|
|
|
* `initializr-web`: REST endpoints and web interface
|
|
|
|
* `initializr-actuator`: optional module to provide statistics and metrics on project
|
|
|
|
generation
|
2018-07-10 20:21:07 +08:00
|
|
|
* `initializr-docs`: documentation
|
2016-04-08 17:56:39 +08:00
|
|
|
|
2016-01-12 21:54:22 +08:00
|
|
|
== Supported interfaces
|
|
|
|
|
|
|
|
Spring Initializr can be used as follows:
|
|
|
|
|
|
|
|
* With your browser (i.e. link:https://start.spring.io[])
|
2016-08-21 16:16:46 +08:00
|
|
|
* In your IDE if you are using STS, IntelliJ IDEA Ultimate or NetBeans (with
|
|
|
|
https://github.com/AlexFalappa/nb-springboot[this plugin])
|
2017-02-03 15:00:37 +08:00
|
|
|
* On the command-line with {boot-doc}/#cli-init[the Spring Boot CLI] or simply with
|
|
|
|
`cURL` or `HTTPie`
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2016-01-12 21:54:22 +08:00
|
|
|
[TIP]
|
|
|
|
====
|
2017-02-03 15:00:37 +08:00
|
|
|
You can "curl" an instance to get a usage page with examples (try
|
|
|
|
`curl start.spring.io`)
|
2016-01-12 21:54:22 +08:00
|
|
|
====
|
|
|
|
|
|
|
|
== Generating a project
|
2017-02-03 15:00:37 +08:00
|
|
|
If you click on "Generate Project" on the web ui of our instance, it will download a
|
|
|
|
project archive with a Maven-based project and the necessary infrastructure to start
|
|
|
|
a basic Spring Boot app.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
You could achieve the same result with a simple `curl` command
|
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
2015-01-21 15:35:03 +08:00
|
|
|
$ curl https://start.spring.io/starter.zip -o demo.zip
|
2015-01-17 17:29:26 +08:00
|
|
|
----
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
The web ui exposes a bunch of options that you can configure. These are mapped to the
|
|
|
|
following request attributes:
|
|
|
|
|
|
|
|
* Basic information for the generated project: `groupId`, `artifactId`, `version`,
|
|
|
|
`name`, `description` and `packageName`
|
|
|
|
** The `name` attribute is also used to generate a default application name. The
|
|
|
|
logic is that the name of the application is equal to the `name` attribute with an
|
|
|
|
`Application` suffix (unless said suffix is already present). Of course, if the
|
|
|
|
specified name contains an invalid character for a java identifier, `Application` is
|
|
|
|
used as fallback.
|
|
|
|
** The `artifactId` attribute not only defines the identifier of the project in the
|
|
|
|
build but also the name of the generated archive.
|
|
|
|
* `dependencies` (or `style`): the identifiers of the dependencies to add to the
|
|
|
|
project. Such identifiers are defined through configuration and are exposed in the
|
|
|
|
<<metadata,metadata>>.
|
|
|
|
* `type`: the _kind_ of project to generate (e.g. `maven-project`). Again, each
|
|
|
|
service exposes an arbitrary number of supported types and these are available in the
|
2016-11-22 00:43:36 +08:00
|
|
|
<<metadata,metadata>>.
|
2015-01-17 17:29:26 +08:00
|
|
|
* `javaVersion`: the language level (e.g. `1.8`).
|
|
|
|
* `bootVersion`: the Spring Boot version to use (e.g. `1.2.0.RELEASE`).
|
|
|
|
* `language`: the programming language to use (e.g. `java`).
|
|
|
|
* `packaging`: the packaging of the project (e.g. `jar`).
|
2017-02-03 15:00:37 +08:00
|
|
|
* `applicationName`: the name of the application class (inferred by the `name`
|
|
|
|
attribute by default).
|
|
|
|
* `baseDir`: the name of the base directory to create in the archive. By default, the
|
|
|
|
project is stored in the root.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
This command generates an `another-project` directory holding a Gradle web-based
|
|
|
|
Groovy project using the actuator:
|
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
$ curl https://start.spring.io/starter.tgz -d dependencies=web,actuator \
|
|
|
|
-d language=groovy -d type=gradle-project -d baseDir=another-project | tar -xzvf -
|
|
|
|
----
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
NOTE: The `/starter.tgz` endpoint offers the same feature as `/starter.zip` but
|
|
|
|
generates a compressed tarball instead.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
You could use this infrastructure to create your own client since the project is
|
|
|
|
generated via a plain HTTP call.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2015-12-31 23:44:08 +08:00
|
|
|
[[customize-form]]
|
|
|
|
== Customize form inputs
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
You can share or bookmark URLs that will automatically customize form inputs. For
|
|
|
|
instance, the following URL from the default instance uses `groovy` by default and
|
|
|
|
set the name to `Groovy Sample`:
|
2015-12-31 23:44:08 +08:00
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
https://start.spring.io/#!language=groovy&name=Groovy%20Sample
|
|
|
|
----
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
The following hashbang parameters are supported: `type`, `groupId`, `artifactId`,
|
|
|
|
`name`, `description`, `packageName`, `packaging`, `javaVersion` and `language`.
|
|
|
|
Review the section above for a description of each of them.
|
2015-12-31 23:44:08 +08:00
|
|
|
|
2016-11-22 00:43:36 +08:00
|
|
|
[[metadata]]
|
|
|
|
== Service metadata
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2016-11-22 00:43:36 +08:00
|
|
|
The service metadata is used by the web UI and is exposed to ease the creation of
|
|
|
|
third-party clients. You can grab the metadata by _curling_ the root
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
2015-01-21 15:35:03 +08:00
|
|
|
$ curl -H 'Accept: application/json' https://start.spring.io
|
2015-01-17 17:29:26 +08:00
|
|
|
----
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
NOTE: As stated above, if you use `curl` without an accept header, you'll retrieve a
|
|
|
|
human readable text version of the metadata. `HTTPie` is also supported:
|
2017-01-29 17:26:39 +08:00
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
$ http https://start.spring.io Accept:application/json
|
|
|
|
----
|
|
|
|
|
2016-11-22 00:43:36 +08:00
|
|
|
The metadata basically lists the _capabilities_ of the service, that is the available
|
2017-02-03 15:00:37 +08:00
|
|
|
options for all request parameters (`dependencies`, `type`, `bootVersion`, etc.) The
|
|
|
|
web UI uses that information to initialize the select options and the tree of
|
|
|
|
available dependencies.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
The metadata also lists the default values for simple _text_ parameter (i.e. the
|
|
|
|
default `name` for the project).
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
NOTE: More details about the structure of the metadata are
|
|
|
|
{docs}/htmlsingle/#metadata-format[available in the documentation].
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
== Running your own instance
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
You can easily run your own instance. The `initializr-web` modules uses Spring Boot
|
|
|
|
so when it is added to a project, it will trigger the necessary auto-configuration to
|
|
|
|
deploy the service.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
You first need to create or update your configuration to define the necessary
|
|
|
|
attributes that your instance will use. Again, check the documentation for a
|
2017-02-03 15:02:16 +08:00
|
|
|
{docs}/htmlsingle/#configuration-format[description of the configuration] and
|
2018-11-07 16:57:31 +08:00
|
|
|
{service}[review our own config] for a sample.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
You can integrate the library in a traditional Java-based project or by writing the
|
|
|
|
super-simple script below:
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
[source,groovy]
|
|
|
|
----
|
|
|
|
package org.acme.myapp
|
|
|
|
|
2016-04-14 22:09:18 +08:00
|
|
|
@Grab('io.spring.initializr:initializr-web:1.0.0.BUILD-SNAPSHOT')
|
2016-04-08 17:56:39 +08:00
|
|
|
@Grab('spring-boot-starter-web')
|
2015-01-17 17:29:26 +08:00
|
|
|
class YourInitializrApplication { }
|
|
|
|
----
|
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
NOTE: Spring Initializr is not available on Maven central yet so you will have to
|
|
|
|
build it <<build,from source>> in order to use it in your own environment.
|
2015-01-17 17:29:26 +08:00
|
|
|
|
2017-02-03 15:00:37 +08:00
|
|
|
Once you have created that script (`my-instance.groovy`), place your configuration
|
|
|
|
in the same directory and simply execute this command to start the service:
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
[source,bash]
|
|
|
|
----
|
|
|
|
$ spring run my-instance.groovy
|
|
|
|
----
|
|
|
|
|
2019-01-29 19:42:40 +08:00
|
|
|
You may also want to https://github.com/spring-io/start.spring.io#run-app[run the default
|
|
|
|
instance locally].
|
2015-01-17 17:29:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[build]]
|
|
|
|
== Building from Source
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2018-02-27 16:11:02 +08:00
|
|
|
You need Java 1.8 and a bash-like shell.
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2015-01-17 17:29:26 +08:00
|
|
|
[[building]]
|
|
|
|
=== Building
|
2013-06-06 15:40:10 +08:00
|
|
|
|
2016-04-08 17:56:39 +08:00
|
|
|
Just invoke the build at the root of the project
|
2014-08-18 22:14:17 +08:00
|
|
|
|
2014-12-08 22:54:25 +08:00
|
|
|
[indent=0]
|
|
|
|
----
|
2017-02-02 22:26:11 +08:00
|
|
|
$ ./mvnw clean install
|
2015-02-17 20:52:39 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
If you want to run the smoke tests using Geb, you need to enable the
|
2016-04-08 17:56:39 +08:00
|
|
|
`smokeTests` profile. Firefox should also be installed on your machine:
|
2015-02-17 20:52:39 +08:00
|
|
|
|
|
|
|
[indent=0]
|
|
|
|
----
|
2017-06-13 18:11:54 +08:00
|
|
|
$ ./mvnw verify -PsmokeTests
|
2014-12-08 22:54:25 +08:00
|
|
|
----
|
2014-08-18 22:14:17 +08:00
|
|
|
|
2018-11-07 16:57:31 +08:00
|
|
|
To generate the docs as well, you should enable the `full` profile:
|
2016-12-29 17:16:50 +08:00
|
|
|
|
|
|
|
[indent=0]
|
|
|
|
----
|
2017-02-02 22:26:11 +08:00
|
|
|
$ ./mvnw clean install -Pfull
|
2016-12-29 17:16:50 +08:00
|
|
|
----
|
|
|
|
|
2015-01-16 20:14:20 +08:00
|
|
|
== License
|
|
|
|
Spring Initializr is Open Source software released under the
|
2016-11-11 00:17:33 +08:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2.0 license].
|