2017-03-30 20:36:16 +08:00
|
|
|
[[configuration-guide]]
|
|
|
|
= Configuration Guide
|
|
|
|
|
|
|
|
[partintro]
|
|
|
|
--
|
2019-08-03 06:43:11 +08:00
|
|
|
You can use Spring Initializr to create your own service that can generate JVM projects.
|
2019-07-13 07:52:05 +08:00
|
|
|
This section describes how you can create your own service and tune it for
|
|
|
|
your needs, and also how you can configure an existing service.
|
2017-03-30 20:36:16 +08:00
|
|
|
--
|
|
|
|
|
2019-07-18 05:15:01 +08:00
|
|
|
[[project-generation-overview]]
|
|
|
|
== Project Generation Overview
|
|
|
|
|
|
|
|
Before getting into <<#create-instance, creating your own service>>, let's take a look at
|
|
|
|
the core concepts of project generation and how the library is structured to support them.
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-07-13 07:52:05 +08:00
|
|
|
Initializr is split across several modules:
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-07-13 07:52:05 +08:00
|
|
|
* `initializr-actuator`: optional module to provide additional information and statistics
|
2019-10-03 17:31:08 +08:00
|
|
|
on project generation.
|
|
|
|
* `initializr-bom`: provides a Bill of Materials for easier dependency management in your
|
|
|
|
project.
|
|
|
|
* `initializr-docs`: documentation.
|
|
|
|
* `initializr-generator`: core project generation library.
|
|
|
|
* `initializr-generator-spring`: optional module defining the conventions for a typical
|
|
|
|
Spring Boot project. Can be reused or replaced by your own conventions.
|
|
|
|
* `initializr-generator-test`: test infrastructure for project generation.
|
|
|
|
* `initializr-metadata`: metadata infrastructure for various aspects of the project.
|
|
|
|
* `initializr-service-sample`: showcases a basic custom instance.
|
|
|
|
* `initializr-version-resolver`: optional module to extract version numbers from an
|
|
|
|
arbitrary POM.
|
|
|
|
* `initializr-web`: web endpoints for third party clients.
|
|
|
|
|
|
|
|
To understand concepts behind project generation, let's take a look at
|
|
|
|
`initializr-generator` and `initializr-generator-spring` in a little more detail.
|
|
|
|
|
2019-02-11 19:23:12 +08:00
|
|
|
|
|
|
|
|
2019-07-13 07:52:05 +08:00
|
|
|
[[initializr-generator]]
|
2019-07-18 05:15:01 +08:00
|
|
|
=== Initializr Generator
|
2019-08-08 00:32:21 +08:00
|
|
|
The `initializr-generator` module contains the low-level infrastructure necessary to
|
|
|
|
generate JVM-based projects.
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-10-03 17:31:08 +08:00
|
|
|
|
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
[[initializr-generator-project]]
|
|
|
|
==== Project Generator
|
|
|
|
The `ProjectGenerator` class is the main entry point for project generation. A
|
|
|
|
`ProjectGenerator` takes a `ProjectDescription` that defines a particular project to
|
|
|
|
generate as well as an implementation of `ProjectAssetGenerator` that is responsible to
|
|
|
|
generate assets based on available candidates.
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
A project is defined by `ProjectDescription` which consists of the following properties:
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
* Basic coordinates such as `groupId`, `artifactId`, `name`, `description`
|
2019-07-13 07:52:05 +08:00
|
|
|
* The `BuildSystem` and `Packaging`
|
|
|
|
* The JVM `Language`
|
|
|
|
* The requested dependencies, indexed by ID
|
2019-08-08 00:32:21 +08:00
|
|
|
* A platform `Version` used by the project. This can be used to tune available
|
|
|
|
dependencies according to the chosen generation.
|
2019-07-13 07:52:05 +08:00
|
|
|
* The name of the `application`
|
|
|
|
* The root package name
|
2019-08-08 00:32:21 +08:00
|
|
|
* The base directory for the project (if different from the root)
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
Project generation occurs in a dedicated application context (`ProjectGenerationContext`),
|
|
|
|
which means that for every project that is generated, the context only contains
|
|
|
|
configuration and components relevant to that particular project. Candidate components for
|
|
|
|
a `ProjectGenerationContext` are defined in `@ProjectGenerationConfiguration`-annotated
|
|
|
|
configuration classes. These configuration classes are imported automatically if they are
|
|
|
|
registered in `META-INF/spring.factories`, as shown in the following example:
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
[indent=0]
|
|
|
|
----
|
|
|
|
io.spring.initializr.generator.project.ProjectGenerationConfiguration=\
|
|
|
|
com.example.acme.build.BuildProjectGenerationConfiguration,\
|
|
|
|
com.example.acme.code.SourceCodeProjectGenerationConfiguration
|
|
|
|
----
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
Components that are added to the `ProjectGenerationContext` are generally made available
|
|
|
|
using conditions. Using conditions avoids exposing beans that have to check if they have
|
|
|
|
to do something and makes the declaration more idiomatic. Consider the following example:
|
2019-02-11 19:23:12 +08:00
|
|
|
|
|
|
|
[source,java,indent=0]
|
|
|
|
----
|
2020-03-17 15:19:13 +08:00
|
|
|
include::{code-examples}/doc/generator/project/ProjectCustomizationExamples.java[tag=war-plugin-contributor]
|
2019-02-11 19:23:12 +08:00
|
|
|
----
|
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
This registers a component that can customize a Gradle build only if the project to
|
|
|
|
generate uses the "Gradle" `BuildSystem` and "war" `Packaging`. Check the
|
2019-10-03 17:31:08 +08:00
|
|
|
`io.spring.initializr.generator.condition` package for more conditions. You can create
|
|
|
|
custom conditions easily by inheriting from `ProjectGenerationCondition`.
|
|
|
|
|
|
|
|
You can only use such conditions on beans that have been loaded on the
|
|
|
|
`ProjectGenerationConfiguration` as they require a concrete `ProjectDescription` bean
|
|
|
|
to operate properly.
|
2019-08-08 00:32:21 +08:00
|
|
|
|
|
|
|
Project generation may also rely on infrastructure that is not specific to a particular
|
|
|
|
project configuration and is usually configured in the main `ApplicationContext` to avoid
|
|
|
|
registering it every time a new request comes in. A common use case is to set the main
|
|
|
|
`ApplicationContext` as the parent of the `ProjectGenerationContext`, as shown in the
|
|
|
|
following example:
|
2019-02-11 19:23:12 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
[source,java,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
include::{code-examples}/doc/generator/project/ProjectGeneratorSetupExample.java[tag=code]
|
|
|
|
----
|
|
|
|
|
|
|
|
This creates a new `ProjectGenerator` that can use any bean of the application, register
|
|
|
|
all contributors found in `META-INF/spring.factories` and also registers an additional
|
|
|
|
`ProjectContributor` programmatically.
|
|
|
|
|
|
|
|
`ProjectContributor` is the highest level interface one can implement to contribute assets
|
2022-11-22 07:30:25 +08:00
|
|
|
to a a project. The `SampleContributor` registered above generates a `hello.txt` file at
|
2019-08-08 00:32:21 +08:00
|
|
|
the root of the project structure, as shown below:
|
|
|
|
|
|
|
|
[source,java,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
include::{code-examples}/doc/generator/project/SampleContributor.java[tag=code]
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[initializr-generator-project-lifecycle]]
|
|
|
|
==== Project Generation Lifecycle
|
|
|
|
When a `ProjectGenerator` is instructed to generate a project, the specified
|
|
|
|
`ProjectDescription` can be customized using available `ProjectDescriptionCustomizer`
|
2019-12-27 17:32:06 +08:00
|
|
|
beans and can be ordered using Spring's `Ordered` interface. A `ProjectDescriptionDiff`
|
|
|
|
bean is available for extensions that wish to know if an attribute of the original
|
|
|
|
`ProjectDescription` was modified.
|
2019-08-08 00:32:21 +08:00
|
|
|
|
|
|
|
Once the description has been customized based on the available
|
|
|
|
``ProjectDescriptionCustomizer``s, the generator uses a `ProjectAssetGenerator` to
|
2019-10-03 17:31:08 +08:00
|
|
|
generate the project assets. The `initializr-generator` module provides a default
|
|
|
|
implementation of this interface (``DefaultProjectAssetGenerator`) that generates a
|
|
|
|
directory structure using available `ProjectContributor` beans.
|
2019-08-08 00:32:21 +08:00
|
|
|
|
|
|
|
While the default `ProjectAssetGenerator` use the file system and invoke a particular set
|
|
|
|
of components, it is possible to use the same `ProjectGenerator` instance with a custom
|
|
|
|
implementation that focus on something else entirely.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[initializr-generator-abstractions]]
|
|
|
|
==== Project Abstractions
|
2019-07-13 07:52:05 +08:00
|
|
|
This module also contains abstractions for various aspects of the project along with
|
|
|
|
some convenient implementations:
|
|
|
|
|
|
|
|
* A build system abstraction with Maven and Gradle implementations.
|
2019-08-08 00:32:21 +08:00
|
|
|
* A language abstraction with Java, Groovy and Kotlin implementations, including a
|
|
|
|
`SourceCodeWriter` for each implementation.
|
|
|
|
* A packaging abstraction with implementations for `jar` and `war`.
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
Adding new implementations for these involves creating a `BuildSystemFactory`,
|
|
|
|
`LanguageFactory` and `PackagingFactory` and registering them in
|
|
|
|
`META-INF/spring.factories` under
|
|
|
|
`io.spring.initializr.generator.buildsystem.BuildSystemFactory`,
|
|
|
|
`io.spring.initializr.generator.language.LanguageFactory` and
|
|
|
|
`io.spring.initializr.generator.packaging.PackagingFactory` respectively.
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2019-10-03 17:31:08 +08:00
|
|
|
A JVM project typically contains a build configuration for the project. The
|
|
|
|
`initializr-generator` module provides a model for `Build` with implementations for
|
|
|
|
`Maven` and `Gradle`. This model can be manipulated depending on the conventions. The
|
|
|
|
library also provides a `MavenBuildWriter` and `GradleBuildWriter` that can convert a
|
|
|
|
`Build` model to build file(s).
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
The next section about the <<initializr-generator-spring,`initializr-generator-spring`>>
|
|
|
|
module showcases how the `Build` can be manipulated before the build file is written
|
|
|
|
using customizers.
|
2019-07-13 07:52:05 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[initializr-generator-spring]]
|
2019-07-18 05:15:01 +08:00
|
|
|
=== Conventions for Spring Boot
|
2019-07-17 15:10:44 +08:00
|
|
|
This is an optional module that defines the conventions that we think will be useful for
|
|
|
|
any Spring Boot project. You can include this jar in your project if your service is meant
|
|
|
|
for generating Spring Boot projects.
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
In the <<initializr-generator-project,Project Generator section>>, we looked at how
|
|
|
|
``ProjectContributor``s can be used to contribute assets to a project. This module
|
|
|
|
contains concrete implementations of `ProjectContributor` along with the
|
|
|
|
``@ProjectGenerationConfiguration``s that configure them. For example, there is a
|
|
|
|
`MavenBuildProjectContributor` which contributes the files for a Maven build, such as
|
|
|
|
`pom.xml`. This contributor is registered as a bean in a `ProjectGenerationConfiguration`
|
|
|
|
which is conditional on the build system being Maven.
|
2019-07-17 15:10:44 +08:00
|
|
|
|
|
|
|
This module also introduces the concept of ``BuildCustomizer``s. ``BuildCustomizer``s are
|
|
|
|
used to customize a project's `Build` and are ordered. For instance, if your service
|
|
|
|
requires you to add a certain plugin to the build, you can provide a `BuildCustomizer`
|
|
|
|
that adds the plugin and the customizer will be called according to the order specified on
|
|
|
|
it.
|
|
|
|
|
2019-08-08 00:32:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[initializr-generator-spring-requirements]]
|
|
|
|
==== Requirements
|
|
|
|
Contributors of this module expect the following beans to be available in the
|
|
|
|
`ProjectGenerationContext`:
|
|
|
|
|
|
|
|
* The `InitializrMetadata` instance to use
|
|
|
|
* Optionally, a `MetadataBuildItemResolver` that can resolve various build items (such as
|
|
|
|
dependencies and BOMs based on their id in the metadata
|
|
|
|
|
|
|
|
If you are using a parent context, it is advised to configure those there as you should
|
|
|
|
not register them every time a new project is generated:
|
|
|
|
|
2019-10-03 17:31:08 +08:00
|
|
|
* An `IndentingWriterFactory` that represents the indenting strategy to use.
|
2019-08-08 00:32:21 +08:00
|
|
|
* A `MustacheTemplateRenderer` using `classpath:/templates` as root location. Consider
|
|
|
|
registering such bean with a cache strategy to avoid resolving templates every time.
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-07-17 15:10:44 +08:00
|
|
|
[[initializr-generator-spring-facets]]
|
2019-07-18 05:15:01 +08:00
|
|
|
==== Supported facets
|
2019-07-17 15:10:44 +08:00
|
|
|
The following facets are handled:
|
|
|
|
|
|
|
|
* `web`: used to drive the inclusion of a dependency with id `web` (defaulting to
|
|
|
|
`spring-boot-starter-web` if no dependency with that facet is present
|
|
|
|
* `jpa`: used to tag that this project uses JPA. When combined with Kotlin, this makes
|
|
|
|
sure to configure the appropriate plugin
|
|
|
|
* `json`: used to tag that this project depends on Jackson. When combined with Kotlin,
|
|
|
|
this makes sure to add the Kotlin-specific jackson module for better interoperability.
|
2019-07-13 07:52:05 +08:00
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[create-instance]]
|
|
|
|
== Creating your own instance
|
2020-11-16 22:10:17 +08:00
|
|
|
This section describes how one can create a custom service.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2020-11-16 22:10:17 +08:00
|
|
|
The first step is to create a new project for your instance and add the following to
|
|
|
|
the build:
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[source,xml,indent=0,subs="verbatim,attributes"]
|
|
|
|
----
|
2019-08-18 14:44:29 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2020-11-16 22:10:17 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-generator-spring</artifactId>
|
|
|
|
</dependency>
|
2019-08-18 14:44:29 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.spring.initializr</groupId>
|
|
|
|
<artifactId>initializr-bom</artifactId>
|
2019-10-03 17:31:08 +08:00
|
|
|
<version>{spring-initializr-version}</version>
|
2019-08-18 14:44:29 +08:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
Or if you are using Gradle:
|
|
|
|
|
|
|
|
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
implementation("org.springframework.boot:spring-boot-starter-web")
|
|
|
|
implementation("io.spring.initializr:initializr-web")
|
|
|
|
implementation("io.spring.initializr:initializr-generator-spring")
|
2019-08-18 14:44:29 +08:00
|
|
|
|
2022-11-08 15:33:11 +08:00
|
|
|
dependencyManagement {
|
|
|
|
imports {
|
|
|
|
mavenBom "io.spring.initializr:initializr-bom:{spring-initializr-version}"
|
|
|
|
}
|
|
|
|
}
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
2020-11-16 22:10:17 +08:00
|
|
|
NOTE: It is assumed that the custom instance will be used to generate Spring Boot-based
|
|
|
|
projects using the conventions provided by the `initializr-generator-spring` module.
|
|
|
|
|
2019-07-13 07:52:05 +08:00
|
|
|
Once you've started the application, you can hit http://localhost:8080. You'll get a json
|
|
|
|
document that describes the capabilities of the service. None of the select capabilities
|
2020-11-17 21:59:19 +08:00
|
|
|
will have values. In the rest of this section, we will configure those basic settings.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[TIP]
|
|
|
|
====
|
|
|
|
Most of the settings are configured via `application.properties` using the `initializr`
|
|
|
|
namespace. Because the configuration is highly hierarchical, we recommend using the yaml
|
2020-11-16 22:10:17 +08:00
|
|
|
format that is more readable for such structure. If you agree, go ahead and create an
|
|
|
|
`application.yml` in `src/main/resources`.
|
2017-03-30 20:36:16 +08:00
|
|
|
====
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[create-instance-basic-settings]]
|
|
|
|
=== Configuring basic settings
|
2019-08-18 14:46:20 +08:00
|
|
|
Most of the select capabilities are configured via a simple list-based structure where
|
|
|
|
each entry has an `id`, a `name` and whether that entry is the default or not. If no
|
|
|
|
`name` is provided, the `id` is used instead.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2019-02-11 19:31:27 +08:00
|
|
|
Let's configure the languages and the JVM generations we want to support:
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
|
|
|
initializr:
|
|
|
|
javaVersions:
|
2022-11-08 15:33:11 +08:00
|
|
|
- id: 11
|
|
|
|
default: false
|
|
|
|
- id: 1.8
|
|
|
|
default: true
|
2017-03-30 20:36:16 +08:00
|
|
|
languages:
|
2022-11-08 15:33:11 +08:00
|
|
|
- name: Java
|
|
|
|
id: java
|
|
|
|
default: true
|
|
|
|
- name: Kotlin
|
|
|
|
id: kotlin
|
|
|
|
default: false
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
2019-07-13 07:52:05 +08:00
|
|
|
If you restart the application and refresh http://localhost:8080, the language capability
|
|
|
|
now has the options and default values defined above.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2019-02-11 19:31:27 +08:00
|
|
|
NOTE: The language identifiers defined there must have a corresponding `Language`
|
2019-08-18 14:46:20 +08:00
|
|
|
implementation. `java`, `kotlin` and `groovy` can be used out-of-the-box as
|
|
|
|
implementations for those are available in the core library itself.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
The available packagings are also configurable that way:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
|
|
|
initializr:
|
|
|
|
packagings:
|
2022-11-08 15:33:11 +08:00
|
|
|
- name: Jar
|
|
|
|
id: jar
|
|
|
|
default: true
|
|
|
|
- name: War
|
|
|
|
id: war
|
|
|
|
default: false
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
2019-10-03 17:31:08 +08:00
|
|
|
NOTE: `Jar` and `War` packaging types are available out-of-the-box. For additional
|
|
|
|
packaging formats, you need to implement the `Packaging` abstraction and provide a
|
2019-08-18 14:46:20 +08:00
|
|
|
`PackagingFactory` that corresponds to it.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
|
2019-07-17 06:32:56 +08:00
|
|
|
|
|
|
|
[[create-instance-text-only-settings]]
|
|
|
|
=== Configuring text-only settings
|
2019-08-18 14:46:20 +08:00
|
|
|
Text-only capabilities include `groupId`, `artifactId`, `name`, `description`, `version`
|
|
|
|
and `packageName`. Each capability has a default value if nothing is configured. The
|
|
|
|
defaults can be overridden as shown below:
|
2019-07-17 06:32:56 +08:00
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
group-id:
|
|
|
|
value: org.acme
|
|
|
|
artifact-id:
|
|
|
|
value: my-app
|
2019-07-17 06:32:56 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
[[create-instance-platform-versions]]
|
|
|
|
=== Configuring available platform versions
|
|
|
|
You can configure the available platform versions the same way you configure other
|
2020-06-19 22:08:18 +08:00
|
|
|
capabilities.
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
NOTE: the concept is reference to `bootVersions` as it predates the concept of platform
|
|
|
|
versions.
|
|
|
|
|
2020-06-19 22:08:18 +08:00
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
bootVersions:
|
|
|
|
- id: 2.4.0-SNAPSHOT
|
2020-06-19 22:08:18 +08:00
|
|
|
name: 2.4.0 (SNAPSHOT)
|
2022-11-08 15:33:11 +08:00
|
|
|
default: false
|
|
|
|
- id: 2.3.3.BUILD-SNAPSHOT
|
2020-06-19 22:08:18 +08:00
|
|
|
name: 2.3.3 (SNAPSHOT)
|
2022-11-08 15:33:11 +08:00
|
|
|
default: false
|
|
|
|
- id: 2.3.2.RELEASE
|
2020-06-19 22:08:18 +08:00
|
|
|
name: 2.3.2
|
2022-11-08 15:33:11 +08:00
|
|
|
default: true
|
2020-06-19 22:08:18 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
The configuration above provides three versions, with `2.3.2` being used by default. In
|
2020-11-17 21:59:19 +08:00
|
|
|
practice though, you may want to upgrade the available platform versions without having
|
2020-06-19 22:08:18 +08:00
|
|
|
to redeploy the application every time. Implementing your own
|
|
|
|
`InitializrMetadataUpdateStrategy` bean allows you to update the metadata at runtime.
|
|
|
|
|
|
|
|
If you look at https://spring.io/projects/spring-boot[the project home page for Spring
|
2023-01-18 22:02:42 +08:00
|
|
|
Boot], the latest versions are displayed. `SpringIoInitializrMetadataUpdateStrategy` is an
|
2020-06-19 22:08:18 +08:00
|
|
|
implementation of that strategy that fetches the latest Spring Boot versions and update
|
2020-11-17 21:59:19 +08:00
|
|
|
the metadata to make sure a running instance using those conventions always get the latest
|
|
|
|
available versions.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2017-08-14 17:26:34 +08:00
|
|
|
If you are behind a proxy, or need to customize the `RestTemplate` that is used behind the
|
|
|
|
scenes, you can define a `RestTemplateCustomizer` bean in your configuration. For more
|
|
|
|
details, {spring-boot-reference}/#boot-features-restclient-customization[check the
|
|
|
|
documentation].
|
|
|
|
|
2023-01-18 22:02:42 +08:00
|
|
|
NOTE: If you opt-in for `SpringIoInitializrMetadataUpdateStrategy`, you have to
|
2017-03-30 20:36:16 +08:00
|
|
|
<<create-instance-advanced-config-caching,configure caching>> to avoid requesting that
|
|
|
|
service too often.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[create-instance-types]]
|
|
|
|
=== Configuring available project types
|
|
|
|
The available project types mostly define the structure of the generated project and its
|
|
|
|
build system. Once a project type is selected, the related action is invoked to generate
|
|
|
|
the project.
|
|
|
|
|
2017-04-13 00:40:22 +08:00
|
|
|
By default, Spring Initializr exposes the following resources (all accessed via HTTP GET):
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
* `/pom.xml` generate a Maven `pom.xml`
|
|
|
|
* `/build.gradle` generate a Gradle build
|
|
|
|
* `/starter.zip` generate a complete project structure archived in a zip
|
|
|
|
* `/starter.tgz` generate a complete project structure archived in a tgz
|
|
|
|
|
2019-02-11 21:37:35 +08:00
|
|
|
The build system must be defined with a `build` tag providing the name of the
|
|
|
|
`BuildSystem` to use (e.g. `maven`, `gradle`).
|
|
|
|
|
2022-11-15 22:15:16 +08:00
|
|
|
Additional tags can be provided to further qualify the entry. If the build system supports
|
|
|
|
multiple dialects, the chosen dialect can be specified using the `dialect` tag.
|
|
|
|
|
|
|
|
A `format` tag is also available to define the format of the project (e.g. `project`
|
2019-02-11 21:37:35 +08:00
|
|
|
for a full project, `build` for just a build file). By default, the HTML UI filters all
|
|
|
|
the available types to only display the ones that have a `format` tag with value
|
|
|
|
`project`.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
You can of course implement additional endpoints that generate whatever project structure
|
|
|
|
you need but, for now, we'll simply configure our instance to generate a Gradle or a Maven
|
|
|
|
project:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
|
|
|
initializr:
|
|
|
|
types:
|
2022-11-08 15:33:11 +08:00
|
|
|
- name: Maven Project
|
|
|
|
id: maven-project
|
|
|
|
description: Generate a Maven based project archive
|
|
|
|
tags:
|
|
|
|
build: maven
|
|
|
|
format: project
|
|
|
|
default: true
|
|
|
|
action: /starter.zip
|
|
|
|
- name: Gradle Project
|
|
|
|
id: gradle-project
|
|
|
|
description: Generate a Gradle based project archive
|
|
|
|
tags:
|
|
|
|
build: gradle
|
|
|
|
format: project
|
|
|
|
default: false
|
|
|
|
action: /starter.zip
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
2017-04-13 00:40:22 +08:00
|
|
|
NOTE: If you intend to build a custom client against your service, you can add as many
|
|
|
|
tags as you want, and process them in the client in a way that makes sense for your users.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
For instance, the Spring Boot CLI uses them as a shortcut to the full type id. So rather
|
2017-04-13 00:40:22 +08:00
|
|
|
than having to create a Gradle project as follows:
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
$ spring init --type=gradle-project my-project.zip
|
|
|
|
----
|
|
|
|
|
|
|
|
You can simply define a more convenient build parameter:
|
|
|
|
|
|
|
|
[indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
$ spring init --build=gradle my-project.zip
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
With that configuration, you should be able to generate your first project,
|
|
|
|
congratulations! Let's now add dependencies so that you can start searching for them.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[create-instance-dependencies]]
|
|
|
|
=== Configuring dependencies
|
|
|
|
The most basic `dependency` is composed of:
|
|
|
|
|
|
|
|
* An `id` used in clients to refer to it
|
|
|
|
* The full maven coordinates of the dependency (`groupId` and `artifactId`)
|
|
|
|
* A display `name` (used in the UI and the search results)
|
|
|
|
* A `description` can (and should) be added to provide more information about the
|
|
|
|
dependency
|
|
|
|
|
|
|
|
Spring Initializr automatically considers that a dependency without maven coordinates
|
|
|
|
defines an official Spring Boot starter. In such a case, the `id` is used to infer the
|
|
|
|
`artifactId`.
|
|
|
|
|
|
|
|
For instance, the following configures the `spring-boot-starter-web` Starter:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Web
|
|
|
|
content:
|
|
|
|
- name: Web
|
|
|
|
id: web
|
|
|
|
description: Full-stack web development with Tomcat and Spring MVC
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
Each dependency is contained in a _group_ that gathers dependencies sharing a common
|
|
|
|
surface area or any other form of grouping. In the example above, a `Web` group holds our
|
|
|
|
unique dependency. A group can also provide default values for various settings, see the
|
|
|
|
<<howto-group-share-settings,dedicated how-to>> for more details.
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
In our `spring-boot-starter-web` example above, we assume that the dependency is _managed_
|
|
|
|
by the platform so there is no need to provide a `version` attribute for it. You'll surely
|
|
|
|
need to define additional dependencies that are not provided by the platform and we
|
|
|
|
strongly recommend you to use a <<create-instance-boms,Bill Of Materials (or BOM)>>.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
If no BOM is available you can specify a version directly:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Tech
|
|
|
|
content:
|
|
|
|
- name: Acme
|
|
|
|
id: acme
|
|
|
|
groupId: com.example.acme
|
|
|
|
artifactId: acme
|
|
|
|
version: 1.2.0.RELEASE
|
|
|
|
description: A solid description for this dependency
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
If you add this configuration and search for "acme" (or "solid"), you'll find this extra
|
2017-04-28 23:15:29 +08:00
|
|
|
entry; generating a maven project with it should add the following to the pom:
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[source,xml,indent=0,subs="verbatim"]
|
|
|
|
----
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.example.acme</groupId>
|
|
|
|
<artifactId>acme</artifactId>
|
|
|
|
<version>1.2.0.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
----
|
|
|
|
|
|
|
|
The rest of this section will detail the other configuration options.
|
|
|
|
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
2019-08-09 17:34:02 +08:00
|
|
|
[[dependencies-compatibility-range]]
|
|
|
|
==== Compatibility Range
|
2020-11-17 21:59:19 +08:00
|
|
|
By default, a dependency is available regardless of the platform version you have
|
|
|
|
selected. If you need to restrict a dependency to a certain platform generation you
|
2019-08-09 17:34:02 +08:00
|
|
|
can add a `compatibilityRange` attribute to its definition that defines a version range. A
|
2020-11-17 21:59:19 +08:00
|
|
|
version range is a range of versions of the platform which are valid in combination with
|
2019-08-09 17:34:02 +08:00
|
|
|
it. The versions are *not* applied to the dependency itself, but rather used to filter out
|
2020-11-17 21:59:19 +08:00
|
|
|
the dependency, or modify it, when different versions of the platform are selected for the
|
2019-08-09 17:34:02 +08:00
|
|
|
generated project.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2020-06-03 16:58:54 +08:00
|
|
|
A version is composed of four parts: a major revision, a minor revision, a patch
|
|
|
|
revision and an optional qualifier. Spring Initializr supports two version formats:
|
|
|
|
|
|
|
|
* `V1` is the original format where the qualifier is separated from the version by a dot.
|
|
|
|
It also uses well-defined qualifiers for snapshots (`BUILD-SNAPSHOT`) and General
|
|
|
|
Availability (`RELEASE`).
|
|
|
|
* `V2` is an improved format that is SemVer compliant, and therefore uses a dash to
|
|
|
|
separate the qualifier. There is no qualifier for GAs.
|
|
|
|
|
|
|
|
Speaking of qualifiers, they are ordered as follows:
|
2017-09-15 19:19:32 +08:00
|
|
|
|
|
|
|
* `M` for milestones (e.g. `2.0.0.M1` is the first milestone of the upcoming 2.0.0
|
|
|
|
release): can be seen as "beta" release
|
2020-06-03 16:58:54 +08:00
|
|
|
* `RC` for release candidates (e.g. `2.0.0-RC2` is the second release candidate of
|
2017-09-15 19:19:32 +08:00
|
|
|
upcoming 2.0.0 release)
|
|
|
|
* `BUILD-SNAPSHOT` for development build (`2.1.0.BUILD-SNAPSHOT` represents the latest
|
2020-06-03 16:58:54 +08:00
|
|
|
available development build of the upcoming 2.1.0 release). For the `V2` format, it is
|
|
|
|
simply `SNAPSHOT`, i.e. `2.1.0-SNAPSHOT`.
|
|
|
|
* `RELEASE` for general availability (e.g. `2.0.0.RELEASE` is 2.0.0 proper)
|
2017-09-15 19:19:32 +08:00
|
|
|
|
2020-06-03 16:58:54 +08:00
|
|
|
TIP: snapshots are in a bit special in that scheme as they always represent the "latest
|
|
|
|
state" of a release. `M1` represents the oldest version for a given major, minor and
|
|
|
|
patch revisions, and it can therefore be safely used when referring to the "first" release
|
|
|
|
in that line.
|
2017-09-15 19:19:32 +08:00
|
|
|
|
2017-04-14 00:47:41 +08:00
|
|
|
A version range has a lower and an upper bound, and if the bound is inclusive it is
|
2017-04-28 23:15:29 +08:00
|
|
|
denoted as a square bracket (`[` or `]`), otherwise it is exclusive and denoted by a
|
|
|
|
parenthesis (`(` or `)`). For instance `[1.1.6.RELEASE,1.3.0.M1)` means from all versions
|
|
|
|
from `1.1.6.RELEASE` up to but not including `1.3.0.M1` (concretely no including the
|
|
|
|
`1.3.x` line and after).
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
A version range can be a single value, e.g. `1.2.0.RELEASE`, which is short for "this
|
2017-04-14 00:47:41 +08:00
|
|
|
version or greater". It is an inclusive lower bound with an implied infinite upper bound.
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
If you need to specify "the latest release" in a given line, you can use a `x` rather than
|
|
|
|
an hard-coded version. For instance, `1.4.x.BUILD-SNAPSHOT` is the latest snapshot build
|
|
|
|
of the 1.4.x line. For instance, if you want to restrict a dependency from `1.1.0.RELEASE`
|
|
|
|
to the latest stable release of the 1.3.x line, you'd use `[1.1.0.RELEASE,1.3.x.RELEASE]`.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2020-06-03 16:58:54 +08:00
|
|
|
Snapshots are naturally the most recent version of a given line, so if you are looking to
|
2020-11-17 21:59:19 +08:00
|
|
|
match a dependency to only the latest snapshots of the platform, you could use a version
|
2017-04-28 23:15:29 +08:00
|
|
|
range of `1.5.x.BUILD-SNAPSHOT` (assuming 1.5 was the latest).
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
TIP: Remember to quote the values of a version range in YAML configuration files (with
|
|
|
|
double quotes "").
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
See below in the section on <<howto-link-platform-version,linking versions>> for more examples
|
2020-06-03 16:58:54 +08:00
|
|
|
and idioms. See also how the <<howto-platform-version-format,platform version format>> can
|
|
|
|
be configured.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2017-04-14 14:59:40 +08:00
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
[[dependencies-repository]]
|
|
|
|
==== Repository
|
|
|
|
If the dependency is not available on Maven Central (or whatever default repository that
|
2017-04-28 23:15:29 +08:00
|
|
|
is configured on your end), you can also add a reference to a repository. A repository is
|
|
|
|
declared at the top level (under `env`) and given an id via the key in the configuration:
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
repositories:
|
|
|
|
my-api-repo-1:
|
|
|
|
name: repo1
|
|
|
|
url: https://example.com/repo1
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
Once defined, the repository can then be referred back to in a dependency
|
2017-04-13 16:58:21 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Other
|
|
|
|
content:
|
|
|
|
- name: Foo
|
|
|
|
groupId: org.acme
|
|
|
|
artifactId: foo
|
|
|
|
version: 1.3.5
|
|
|
|
repository: my-api-repo-1
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
It is usually preferable to have a BOM for every dependency, and attach the repository to
|
|
|
|
the BOM instead.
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
TIP: The snapshots and milestones repositories on `repo.spring.io` are automatically
|
|
|
|
available with the `spring-snapshots` and `spring-milestones` identifiers respectively.
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-13 16:58:21 +08:00
|
|
|
[[create-instance-boms]]
|
|
|
|
=== Configuring Bill of Materials
|
2017-04-28 23:15:29 +08:00
|
|
|
A Bill of Materials (BOM) is a special `pom.xml`, deployed to a Maven repository, and used
|
2017-04-13 16:58:21 +08:00
|
|
|
to control dependency management for a set of related artifacts. In the Spring Boot
|
2017-04-28 23:15:29 +08:00
|
|
|
ecosystem we usually use the suffix `-dependencies` on the artifact id of a BOM. In other
|
|
|
|
projects we see `-bom`. It is recommended that all dependencies are included in a BOM of
|
2017-04-13 16:58:21 +08:00
|
|
|
some sort, since they provide nice high level features for users of the dependency. It is
|
|
|
|
also important that 2 BOMs used in a project do not contain conflicting versions for the
|
2019-08-03 06:43:11 +08:00
|
|
|
same dependency, so the best practice is to look at the existing BOMs in Spring Initializr
|
2017-04-28 23:15:29 +08:00
|
|
|
before you add a new one, and make sure that you aren't adding a conflict.
|
2017-04-13 16:58:21 +08:00
|
|
|
|
2019-08-03 06:43:11 +08:00
|
|
|
In Spring Initializr a BOM is declared at the `env` level, and given an id through the
|
2017-04-13 16:58:21 +08:00
|
|
|
configuration key. Example:
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
boms:
|
|
|
|
my-api-bom:
|
|
|
|
groupId: org.acme
|
|
|
|
artifactId: my-api-dependencies
|
|
|
|
version: 1.0.0.RELEASE
|
|
|
|
repositories: my-api-repo-1
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
If a BOM requires a special, non-default repository, then it can be referred to here,
|
|
|
|
instead of having to explicitly list the repository again for each dependency. A
|
2017-04-28 23:15:29 +08:00
|
|
|
dependency, or a dependency group, can declare that it requires the use of one or more
|
|
|
|
BOMs by referring to the id:
|
2017-04-13 16:58:21 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Other
|
|
|
|
content:
|
|
|
|
- name: My API
|
|
|
|
id : my-api
|
|
|
|
groupId: org.acme
|
|
|
|
artifactId: my-api
|
|
|
|
bom: my-api-bom
|
2017-04-13 16:58:21 +08:00
|
|
|
----
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[dependencies-mappings]]
|
2020-11-17 21:59:19 +08:00
|
|
|
==== Map coordinates according to the platform version
|
|
|
|
In addition to a compatibility range for the dependency or a BOM, you can configure
|
2017-04-28 23:15:29 +08:00
|
|
|
the version relationships at a finer grained level using version mappings. A dependency or
|
|
|
|
BOM has a list of "mappings", each of which consists of a version range, and a set of one
|
2020-11-17 21:59:19 +08:00
|
|
|
or more dependency properties to override for those versions of the platform. You can use
|
|
|
|
a mapping to switch the version of a dependency, or (better) the BOM, or to change its
|
2017-04-28 23:15:29 +08:00
|
|
|
artifact id (if the project changed its packaging) for instance.
|
|
|
|
|
|
|
|
Here's an example of a BOM with mappings:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
boms:
|
|
|
|
cloud-bom:
|
|
|
|
groupId: com.example.foo
|
|
|
|
artifactId: acme-foo-dependencies
|
|
|
|
mappings:
|
|
|
|
- compatibilityRange: "[1.2.3.RELEASE,1.3.0.RELEASE)"
|
|
|
|
groupId: com.example.bar
|
|
|
|
artifactId: acme-foo-bom
|
|
|
|
version: Arcturus.SR6
|
|
|
|
- compatibilityRange: "[1.3.0.RELEASE,1.4.0.RELEASE)"
|
|
|
|
version: Botein.SR7
|
|
|
|
- compatibilityRange: "[1.4.0.RELEASE,1.5.x.RELEASE)"
|
|
|
|
version: Castor.SR6
|
|
|
|
- compatibilityRange: "[1.5.0.RELEASE,1.5.x.BUILD-SNAPSHOT)"
|
|
|
|
version: Diadem.RC1
|
|
|
|
repositories: spring-milestones
|
|
|
|
- compatibilityRange: "1.5.x.BUILD-SNAPSHOT"
|
|
|
|
version: Diadem.BUILD-SNAPSHOT
|
|
|
|
repositories: spring-snapshots,spring-milestones
|
2017-04-28 23:15:29 +08:00
|
|
|
----
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
The primary use case here is to map platform versions to the preferred or supported
|
2017-04-28 23:15:29 +08:00
|
|
|
versions of the Foo project. You can also see that for the milestone and snapshot BOMs,
|
|
|
|
additional repositories are declared because those artifacts are not in the default
|
2018-08-14 16:12:25 +08:00
|
|
|
repository. Initially the BOM was identified as `com.example.bar:acme-foo-bom` and renamed
|
|
|
|
as of `Botein` to `com.example.foo:acme-foo-dependencies`.
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
TIP: We also use the `x` trick in version ranges to avoid updating the range every time
|
2020-11-17 21:59:19 +08:00
|
|
|
a new platform 1.5 bug fix release is available.
|
2017-04-28 23:15:29 +08:00
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
See below in the section on <<howto-link-platform-version,linking versions>> for more examples.
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[dependencies-alias]]
|
|
|
|
==== Aliases
|
|
|
|
A dependency has an id (e.g. "web-services"), but it could be necessary to provide a new
|
|
|
|
id and still be able to serve request from client using the now deprecated id. To do so,
|
|
|
|
an alias can be defined for ths dependency;
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Other
|
|
|
|
content:
|
|
|
|
- name: Web Services
|
|
|
|
id: web-services
|
|
|
|
aliases:
|
|
|
|
- ws
|
2017-04-28 23:15:29 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
The same project can now be generated with `dependencies=ws` or
|
|
|
|
`dependencies=web-services`.
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[dependencies-facet]]
|
|
|
|
==== Facets
|
2017-04-14 00:47:41 +08:00
|
|
|
A "facet" is a label on a dependency which is used to drive a code modification in the
|
2019-05-21 06:38:55 +08:00
|
|
|
generated project. For example, `initializr-generator-spring` checks for the presence of a
|
2019-08-18 14:46:20 +08:00
|
|
|
dependency with the `web` facet if the packaging type is `war`. The absence of a
|
|
|
|
dependency with the `web` facet drives inclusion of a dependency with id `web` (defaulting
|
|
|
|
to `spring-boot-starter-web` if such dependency is not available).
|
2018-05-18 23:24:56 +08:00
|
|
|
|
|
|
|
The value of the "facets" property of a dependency is a list of strings.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[create-instance-dependencies-link]]
|
|
|
|
==== Links
|
2017-04-14 00:47:41 +08:00
|
|
|
Links can be used to provide descriptive and hyperlink data to guide to user on how to
|
|
|
|
learn more about a dependency. A dependency has a "links" property which is a list of
|
2017-04-28 23:15:29 +08:00
|
|
|
`Link`. Each link has a `rel` label to identify it, an `href` and an optional (but
|
|
|
|
recommended) `description`.
|
|
|
|
|
|
|
|
The following `rel` value are currently officially supported:
|
|
|
|
|
|
|
|
* `guide`: the link points to a guide describing how to use the related dependency. It
|
|
|
|
can be a tutorial, a how-to or typically a guide available on https://spring.io/guides
|
2022-11-22 07:30:25 +08:00
|
|
|
* `reference`: the link points to a section of a developer guide typically or any page that
|
2017-04-28 23:15:29 +08:00
|
|
|
documents how to use the dependency
|
|
|
|
|
|
|
|
The url can be templated if its actual value can change according to the environment. An
|
|
|
|
URL parameter is specified with curly braces, something like
|
|
|
|
`https://example.com/doc/{bootVersion}/section` defines a `bootVersion` parameter.
|
|
|
|
|
|
|
|
The following attributes are currently supported:
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
* `bootVersion`: the platform version that is currently active (named `bootVersion` for
|
|
|
|
backward compatibility with the metadata format)
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
Here is an example that adds two links to the `acme` dependency:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Tech
|
|
|
|
content:
|
|
|
|
- name: Acme
|
|
|
|
id: acme
|
|
|
|
groupId: com.example.acme
|
|
|
|
artifactId: acme
|
|
|
|
version: 1.2.0.RELEASE
|
|
|
|
description: A solid description for this dependency
|
|
|
|
links:
|
|
|
|
- rel: guide
|
|
|
|
href: https://com.example/guides/acme/
|
|
|
|
description: Getting started with Acme
|
|
|
|
- rel: reference
|
|
|
|
href: https://docs.example.com/acme/html
|
2017-04-28 23:15:29 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2020-11-16 22:10:17 +08:00
|
|
|
[[configuration-access]]
|
|
|
|
== Generating a Project using the Web Endpoints
|
|
|
|
To discover the available options of a particular instance, simply "curl it". Assuming
|
|
|
|
that an instance is running on your machine on the default port, invoke the following:
|
|
|
|
|
|
|
|
[indent=0]
|
|
|
|
----
|
|
|
|
$ curl http://localhost:8080
|
|
|
|
----
|
|
|
|
|
|
|
|
Alternatively, if you prefer `HTTPie`, you can discover the available options as follows:
|
|
|
|
|
|
|
|
|
|
|
|
[indent=0]
|
|
|
|
----
|
|
|
|
$ http http://localhost:8080
|
|
|
|
----
|
|
|
|
|
|
|
|
The result is a textual representation of the capabilities of the service that are split
|
|
|
|
in three sections:
|
|
|
|
|
|
|
|
First, a table that describes the <<create-instance-types,available project types>>.
|
|
|
|
|
|
|
|
Then, a table that describes the <<initializr-generator-project,available parameters>>.
|
|
|
|
|
|
|
|
Finally, the list of dependencies are defined. Each entry provides the identifier that
|
2020-11-17 21:59:19 +08:00
|
|
|
you'll have to use if you want to select the dependency, a description and the
|
|
|
|
compatibility range, if any.
|
2020-11-16 22:10:17 +08:00
|
|
|
|
|
|
|
Alongside the capabilities of the service, you'll also find a few examples that help you
|
|
|
|
understand how you can generate a project. These are obviously tailored to the client that
|
|
|
|
you are using.
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
Let's assume that you want to generate a "my-project.zip" project based on version
|
|
|
|
`2.3.5.RELEASE` of the platform, using the `web` and `devtools` dependencies (remember,
|
|
|
|
those two ids are displayed in the capabilities of the service):
|
2020-11-16 22:10:17 +08:00
|
|
|
|
|
|
|
[source]
|
|
|
|
----
|
2021-03-05 17:50:17 +08:00
|
|
|
$ curl -G http://localhost:8080/starter.zip -d dependencies=web,devtools \
|
2020-11-16 22:10:17 +08:00
|
|
|
-d bootVersion=2.3.5.RELEASE -o my-project.zip
|
|
|
|
----
|
|
|
|
|
|
|
|
If you extract `my-project.zip`, you'll notice a few differences compared to what happens
|
|
|
|
with the web UI:
|
|
|
|
|
|
|
|
* The project will be extracted in the current directory (the web UI adds a base directory
|
|
|
|
automatically with the same name as the one of the project)
|
|
|
|
* The name of the project is not `my-project` (the `-o` parameter has no impact on the
|
|
|
|
name of the project)
|
|
|
|
|
|
|
|
The exact same project can be generated using the `http` command as well:
|
|
|
|
|
|
|
|
[source]
|
|
|
|
----
|
|
|
|
$ http https://localhost:8080/starter.zip dependencies==web,devtools \
|
|
|
|
bootVersion==2.3.5.RELEASE -d
|
|
|
|
----
|
|
|
|
|
|
|
|
NOTE: `HTTPie` reads the same hint as the browser so it will store a `demo.zip` file in
|
|
|
|
the current directory, with the same differences discussed above.
|
|
|
|
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[configuration-howto]]
|
|
|
|
== '`How-to`' guides
|
|
|
|
This section provides answers to some common '`how do I do that...`' type of questions
|
|
|
|
that often arise when configuring Spring Initializr.
|
|
|
|
|
2017-04-11 17:07:00 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
[[howto-add-a-new-dependency]]
|
|
|
|
=== Add a new dependency
|
2020-11-17 21:59:19 +08:00
|
|
|
To add a new dependency, first identify the Maven coordinates of the dependency you want
|
|
|
|
to add (`groupId:artifactId:version`) and then check which versions of the platform it
|
|
|
|
works with. If there are multiple versions that work with different versions of the
|
|
|
|
platform, then that's fine too.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
|
|
|
* If there is a published BOM that manages the version of you dependency, then add that
|
2017-04-28 23:15:29 +08:00
|
|
|
first, in the `env` section (see <<create-instance-boms>>).
|
2017-04-14 00:47:41 +08:00
|
|
|
* Then configure the dependency, fitting it into an existing group if you can, otherwise
|
|
|
|
creating a new group.
|
|
|
|
* If there is a BOM then omit the version.
|
2020-11-17 21:59:19 +08:00
|
|
|
* If there is a compatibility version range (or min or max) that you need for this
|
|
|
|
dependency, add that as a <<howto-link-platform-version,linked version>>.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2017-04-11 17:07:00 +08:00
|
|
|
[[howto-override-a-version]]
|
|
|
|
=== Override the version of a dependency
|
2017-04-14 00:47:41 +08:00
|
|
|
Sometimes it happens that the BOM that normally manages your dependency version is in
|
|
|
|
conflict with the newest version. Or maybe this is the case for only a range of Spring
|
|
|
|
Boot versions. Or maybe there just is no BOM, or it's not worth creating one for just one
|
2017-04-28 23:15:29 +08:00
|
|
|
dependency. In these cases you can specify the version manually for a dependency either
|
|
|
|
at the top level, or in a
|
2020-11-17 21:59:19 +08:00
|
|
|
<<howto-link-platform-version,version mapping>>. At the top level it looks like this (just
|
2017-04-28 23:15:29 +08:00
|
|
|
a `version` property in a dependency):
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Tech
|
|
|
|
content:
|
|
|
|
- name: Acme
|
|
|
|
id: acme
|
|
|
|
groupId: com.example.acme
|
|
|
|
artifactId: acme
|
|
|
|
version: 1.2.0.RELEASE
|
|
|
|
description: A solid description for this dependency
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
[[howto-link-platform-version]]
|
|
|
|
=== Link a version of the platform to a version of your dependency
|
|
|
|
If your dependency requires a specific version of the platform, ot different versions of
|
|
|
|
the platform require different versions of your dependency there are a couple of
|
|
|
|
mechanisms to configure that.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2019-08-09 17:34:02 +08:00
|
|
|
The simplest is to put a `compatibilityRange` in the dependency declaration. This is a
|
2020-11-17 21:59:19 +08:00
|
|
|
range of versions of the platform, not of your dependency. For example:
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Stuff
|
|
|
|
content:
|
|
|
|
- name: Foo
|
|
|
|
id: foo
|
|
|
|
...
|
|
|
|
compatibilityRange: 1.2.0.M1
|
|
|
|
- name: Bar
|
|
|
|
id: bar
|
|
|
|
...
|
|
|
|
compatibilityRange: "[1.5.0.RC1,2.0.0.M1)"
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
In this example `Foo` is available for as of `1.2.0` of the platform, and `Bar` is
|
|
|
|
available for versions of the platform starting at `1.5.0.RC1` and up to, but not
|
|
|
|
including, `2.0.0.M1`.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
If different versions of your dependency work with different versions of the platform,
|
2017-04-28 23:15:29 +08:00
|
|
|
that's when you need the `mappings` property. A mapping is a combination of a
|
2019-08-09 17:34:02 +08:00
|
|
|
`compatibilityRange` and some or all of the other properties of the dependency, overriding
|
2017-04-14 00:47:41 +08:00
|
|
|
the values defined at the top level. For example:
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Stuff
|
|
|
|
content:
|
|
|
|
- name: Foo
|
|
|
|
id: foo
|
|
|
|
groupId: org.acme.foo
|
|
|
|
artifactId: foo-spring-boot-starter
|
|
|
|
compatibilityRange: 1.3.0.RELEASE
|
|
|
|
bom: cloud-task-bom
|
|
|
|
mappings:
|
|
|
|
- compatibilityRange: "[1.3.0.RELEASE,1.3.x.RELEASE]"
|
|
|
|
artifactId: foo-starter
|
|
|
|
- compatibilityRange: "1.4.0.RELEASE"
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
In this example, The artifact of `foo` was changed to `foo-spring-boot-starter` as of the
|
2020-11-17 21:59:19 +08:00
|
|
|
version that is compatible as of `1.4.0` of the platform. This mapping instructs that if
|
|
|
|
`1.3.x` of the platform is selected, the artifactId should be set to `foo-starter`.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
|
|
|
A mapping can also be applied to a BOM declaration. For example:
|
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
boms:
|
|
|
|
my-api-bom:
|
|
|
|
groupId: org.acme
|
|
|
|
artifactId: my-api-bom
|
|
|
|
additionalBoms: ['my-api-dependencies-bom']
|
|
|
|
mappings:
|
|
|
|
- compatibilityRange: "[1.0.0.RELEASE,1.1.6.RELEASE)"
|
|
|
|
version: 1.0.0.RELEASE
|
|
|
|
repositories: my-api-repo-1
|
|
|
|
- compatibilityRange: "1.2.1.RELEASE"
|
|
|
|
version: 2.0.0.RELEASE
|
|
|
|
repositories: my-api-repo-2
|
2017-04-14 00:47:41 +08:00
|
|
|
----
|
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
In this example, versions of the platform up to `1.1.6` select version `1.0.0` of the BOM,
|
|
|
|
and set a different repository. Versions of the platform as of `1.2.1` select `2.0.0` of
|
|
|
|
the BOM and yet another repository.
|
2017-04-14 00:47:41 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2017-04-11 17:07:00 +08:00
|
|
|
[[howto-add-snapshot-repository]]
|
|
|
|
=== Configure a snapshot repository
|
2017-04-14 16:03:44 +08:00
|
|
|
A dependency, or a BOM, might require the use of a specific repository, if the default one
|
|
|
|
(usually Maven Central) does not contain the artifacts. Normally, the best place to
|
|
|
|
declare that is in the BOM configuration, but if there isn't a BOM then you can put it in
|
2020-11-17 21:59:19 +08:00
|
|
|
the dependency itself. You can also use a platform <<dependencies-mappings,version
|
|
|
|
mapping>> to override the default repository for a dependency or BOM.
|
2017-04-14 16:03:44 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2019-07-18 04:52:52 +08:00
|
|
|
[[howto-configure-custom-parent-pom]]
|
|
|
|
=== Configure a custom parent POM
|
|
|
|
For Maven projects, you can configure a custom parent POM as follows:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
maven:
|
|
|
|
parent:
|
|
|
|
groupId: com.example
|
|
|
|
artifactId: my-parent
|
|
|
|
version: 1.0.0
|
|
|
|
relativePath: ../pom.xml
|
|
|
|
includeSpringBootBom : true
|
2019-07-18 04:52:52 +08:00
|
|
|
----
|
|
|
|
|
2022-01-22 18:29:52 +08:00
|
|
|
If the `relativePath` is not specified, the pom is resolved from the repository.
|
|
|
|
|
2019-08-18 14:46:20 +08:00
|
|
|
`includeSpringBootBom` is `false` by default. When set to `true`, the
|
|
|
|
`spring-boot-dependencies` bom is added to the `dependencyManagement` section with the
|
|
|
|
version of Spring Boot used for the project.
|
2019-07-18 04:52:52 +08:00
|
|
|
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[howto-dependency-starter-flag]]
|
|
|
|
=== Make sure a regular dependency brings the base starter
|
2017-04-14 16:03:44 +08:00
|
|
|
If a dependency does not stand on its own (and specifically if it does not depend on an
|
2017-04-28 23:15:29 +08:00
|
|
|
existing Spring Boot starter) you can flag it as a "non starter":
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Stuff
|
|
|
|
content:
|
|
|
|
- name: Lib
|
|
|
|
id: lib
|
|
|
|
groupId: com.acme
|
|
|
|
artifactId: lib
|
|
|
|
starter: false
|
2017-04-28 23:15:29 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
When a project is generated that only has dependencies with this flag set, then the base
|
|
|
|
Spring Boot starter is added as well.
|
|
|
|
|
|
|
|
|
2017-04-14 16:03:44 +08:00
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[howto-group-share-settings]]
|
|
|
|
=== Share common dependency settings in a group
|
2017-04-28 23:15:29 +08:00
|
|
|
A dependency group is a hint for user interface implementations, to group things together
|
2017-04-15 05:10:01 +08:00
|
|
|
for users when they are selecting dependencies. It is also a convenient way to share
|
2017-04-15 14:17:37 +08:00
|
|
|
settings between dependencies because every dependency inherits all the settings. The most
|
2019-08-09 17:34:02 +08:00
|
|
|
common settings in a group are the `groupId`, `compatibilityRange` and `bom`:
|
2017-04-15 05:10:01 +08:00
|
|
|
|
2017-04-28 23:15:29 +08:00
|
|
|
[source,yaml,indent=0]
|
2017-04-15 05:10:01 +08:00
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
dependencies:
|
|
|
|
- name: Stuff
|
|
|
|
bom: stuff-bom
|
|
|
|
compatibilityRange: "[1.3.0.RELEASE,2.0.0.M1)"
|
|
|
|
content:
|
|
|
|
...
|
2017-04-15 14:17:37 +08:00
|
|
|
----
|
2017-04-15 05:10:01 +08:00
|
|
|
|
2020-11-17 21:59:19 +08:00
|
|
|
These dependencies, by default, will be available only for versions of the platform as of
|
|
|
|
`1.3.0.RELEASE` up to `2.0.0.M1` (excluded) and will bring in the `stuff-bom` BOM.
|
2017-04-28 23:15:29 +08:00
|
|
|
|
|
|
|
|
2022-01-22 18:37:50 +08:00
|
|
|
[[howto-kotlin-version-mapping]]
|
|
|
|
=== Configure Kotlin version mapping
|
|
|
|
By default, the Kotlin version to use is inferred from the metadata.
|
|
|
|
The following example shows how to map two versions of Kotlin based on the platform version.
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
kotlin:
|
|
|
|
mappings:
|
|
|
|
- compatibilityRange: "[2.0.0.RELEASE,2.4.0-M1)"
|
|
|
|
version: 1.2
|
|
|
|
- compatibilityRange: "2.4.0-M1"
|
|
|
|
version: 1.3
|
2022-01-22 18:37:50 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
For a more advanced resolution, consider implementing a `KotlinVersionResolver` bean.
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2020-06-03 16:58:54 +08:00
|
|
|
[[howto-platform-version-format]]
|
|
|
|
=== Configure platform version format
|
|
|
|
Spring Initializr supports two formats: `V1` is the original format defined by metadata
|
|
|
|
up to `2.1`. `V2` is the SemVer format provided alongside `V1` as of metadata `2.2`. In
|
|
|
|
order to serve backward compatible content, the version range for each format should be
|
|
|
|
configured so that translations can happen accordingly.
|
|
|
|
|
|
|
|
Let's assume that an instance only supports `2.0.0` and later and the platform version is
|
|
|
|
using the original format up to `2.4.0` (excluded). As of `2.4.0`, the improved, SemVer
|
|
|
|
format is used. The following configures the instance to adapt version format
|
|
|
|
automatically:
|
|
|
|
|
|
|
|
[source,yaml,indent=0]
|
|
|
|
----
|
2022-11-08 15:33:11 +08:00
|
|
|
initializr:
|
|
|
|
env:
|
|
|
|
platform:
|
|
|
|
compatibility-range: "2.0.0.RELEASE"
|
|
|
|
v1-format-compatibility-range: "[2.0.0.RELEASE,2.4.0-M1)"
|
|
|
|
v2-format-compatibility-range: "2.4.0-M1"
|
2020-06-03 16:58:54 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
[[create-instance-advanced-config]]
|
|
|
|
== Advanced configuration
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[create-instance-advanced-config-caching]]
|
|
|
|
=== Caching configuration
|
|
|
|
If you use the service, you'll notice that the logs have lots of entries with the message
|
2023-01-27 01:27:59 +08:00
|
|
|
`Fetching boot metadata from https://api.spring.io/projects/spring-boot/releases`. To avoid
|
2017-03-30 20:36:16 +08:00
|
|
|
checking for the latest Spring Boot versions too often, you should enable caching on your
|
|
|
|
service. Spring Initializr has some auto-configuration to apply the proper caches if you
|
|
|
|
are willing to use a JCache (JSR-107) implementation.
|
|
|
|
|
2020-12-08 22:32:37 +08:00
|
|
|
NOTE: The caches are created with an auto-configured `JCacheManagerCustomizer` with order `0` and only if they don't exist already.
|
|
|
|
You can contribute a bean of the same type with a lower `@Order` to override some of the configuration to suit your specific needs.
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
Add the `javax.cache:cache-api` and your favorite JCache implementation and simply enable
|
|
|
|
caching by adding `@EnableCaching` to your `@SpringBootApplication`. For instance, you
|
|
|
|
could use `ehcache` by adding the following:
|
|
|
|
|
|
|
|
[source,xml,indent=0,subs="verbatim,attributes"]
|
|
|
|
----
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.cache</groupId>
|
|
|
|
<artifactId>cache-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.ehcache</groupId>
|
|
|
|
<artifactId>ehcache</artifactId>
|
|
|
|
</dependency>
|
|
|
|
----
|
|
|
|
|
|
|
|
Or if you are using Gradle:
|
|
|
|
|
|
|
|
[source,groovy,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
2018-09-01 04:47:50 +08:00
|
|
|
implementation("javax.cache:cache-api")
|
|
|
|
implementation("org.ehcache:ehcache")
|
2017-03-30 20:36:16 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
You'll notice that the log entry is much more rare. If you do not want to use JSR-107, you
|
2017-04-11 17:07:00 +08:00
|
|
|
should configure the cache yourselves. Here are the caches used by the application (each
|
|
|
|
one will require some configuration to get it working):
|
2017-03-30 20:36:16 +08:00
|
|
|
|
|
|
|
.Cache configuration
|
|
|
|
|===
|
|
|
|
| cache name | Description
|
|
|
|
|
2017-09-15 19:29:45 +08:00
|
|
|
|`initializr.metadata`
|
2017-03-30 20:36:16 +08:00
|
|
|
|Cache the full metadata of the service. When the metadata expires, it is fully resolved
|
2020-11-17 21:59:19 +08:00
|
|
|
again (which may include a network call to determine the latest platform versions). Adapt
|
|
|
|
the expiration settings accordingly.
|
2017-03-30 20:36:16 +08:00
|
|
|
|
2017-09-15 19:29:45 +08:00
|
|
|
|`initializr.dependency-metadata`
|
|
|
|
|Cache dependency-specific metadata.
|
|
|
|
|
2019-02-08 17:53:49 +08:00
|
|
|
|`initializr.templates`
|
|
|
|
|Cache templates that are used to generate projects.
|
|
|
|
|
2017-03-30 20:36:16 +08:00
|
|
|
|===
|
2019-08-26 22:47:04 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[create-instance-advanced-config-custom-project-request]]
|
|
|
|
=== Bind to custom project request
|
|
|
|
Only attributes that are defined in the metadata can be bound to a `ProjectRequest` and
|
2021-03-24 23:00:28 +08:00
|
|
|
ultimately made available in `ProjectDescription`. A custom instance may choose however to
|
2019-08-26 22:47:04 +08:00
|
|
|
provide additional attributes. Please note that those attributes won't be supported by
|
|
|
|
official clients (i.e. IDEs).
|
|
|
|
|
|
|
|
The first step is to define a custom `ProjectRequest` with your additional attributes and
|
|
|
|
create a custom `ProjectGenerationController` that binds to it:
|
|
|
|
|
|
|
|
[source,java,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
include::{code-examples}/doc/generator/project/CustomProjectGenerationController.java[tag=code]
|
|
|
|
----
|
|
|
|
|
|
|
|
If you inherit from `WebProjectRequest`, defaults can be automatically applied from the
|
2021-03-24 23:00:28 +08:00
|
|
|
metadata as shown above but you may also choose to ignore that.
|
2019-08-26 22:47:04 +08:00
|
|
|
|
|
|
|
The next step is to make sure that those additional attributes are made available in the
|
|
|
|
`ProjectGenerationContext`. The idiomatic way of doing this is to create your own
|
|
|
|
interface that extends from `ProjectDescription` and expose your custom attributes. To
|
2019-08-29 16:46:46 +08:00
|
|
|
make sure your view of `ProjectDescription` is made available in the
|
2019-08-26 22:47:04 +08:00
|
|
|
`ProjectGenerationContext`, a custom `ProjectRequestToDescriptionConverter` should be
|
2019-08-29 16:46:46 +08:00
|
|
|
defined and could reuse `DefaultProjectRequestToDescriptionConverter` to apply general
|
|
|
|
rules for standard fields.
|
|
|
|
|
|
|
|
Finally, you should wire up everything:
|
|
|
|
|
|
|
|
[source,java,indent=0,subs="verbatim,quotes,attributes"]
|
|
|
|
----
|
|
|
|
include::{code-examples}/doc/generator/project/CustomProjectGenerationConfigurationExample.java[tag=code]
|
|
|
|
----
|