parent
7d03a201c0
commit
cb48674536
|
@ -136,11 +136,11 @@ You can list the capabilities of the service by using the `--list` flag, as show
|
||||||
|
|
||||||
The `init` command supports many options.
|
The `init` command supports many options.
|
||||||
See the `help` output for more details.
|
See the `help` output for more details.
|
||||||
For instance, the following command creates a Gradle project that uses Java 8 and `war` packaging:
|
For instance, the following command creates a Gradle project that uses Java 17 and `war` packaging:
|
||||||
|
|
||||||
[source,shell,indent=0,subs="verbatim"]
|
[source,shell,indent=0,subs="verbatim"]
|
||||||
----
|
----
|
||||||
$ spring init --build=gradle --java-version=1.8 --dependencies=websocket --packaging=war sample-app.zip
|
$ spring init --build=gradle --java-version=17 --dependencies=websocket --packaging=war sample-app.zip
|
||||||
Using service at https://start.spring.io
|
Using service at https://start.spring.io
|
||||||
Content saved to 'sample-app.zip'
|
Content saved to 'sample-app.zip'
|
||||||
----
|
----
|
||||||
|
|
|
@ -45,7 +45,7 @@ At this point, `cf` starts uploading your application, producing output similar
|
||||||
Preparing to start acloudyspringtime... *OK*
|
Preparing to start acloudyspringtime... *OK*
|
||||||
-----> Downloaded app package (*8.9M*)
|
-----> Downloaded app package (*8.9M*)
|
||||||
-----> Java Buildpack Version: v3.12 (offline) | https://github.com/cloudfoundry/java-buildpack.git#6f25b7e
|
-----> Java Buildpack Version: v3.12 (offline) | https://github.com/cloudfoundry/java-buildpack.git#6f25b7e
|
||||||
-----> Downloading Open Jdk JRE 1.8.0_121 from https://java-buildpack.cloudfoundry.org/openjdk/trusty/x86_64/openjdk-1.8.0_121.tar.gz (found in cache)
|
-----> Downloading Open Jdk JRE
|
||||||
Expanding Open Jdk JRE to .java-buildpack/open_jdk_jre (1.6s)
|
Expanding Open Jdk JRE to .java-buildpack/open_jdk_jre (1.6s)
|
||||||
-----> Downloading Open JDK Like Memory Calculator 2.0.2_RELEASE from https://java-buildpack.cloudfoundry.org/memory-calculator/trusty/x86_64/memory-calculator-2.0.2_RELEASE.tar.gz (found in cache)
|
-----> Downloading Open JDK Like Memory Calculator 2.0.2_RELEASE from https://java-buildpack.cloudfoundry.org/memory-calculator/trusty/x86_64/memory-calculator-2.0.2_RELEASE.tar.gz (found in cache)
|
||||||
Memory Settings: -Xss349K -Xmx681574K -XX:MaxMetaspaceSize=104857K -Xms681574K -XX:MetaspaceSize=104857K
|
Memory Settings: -Xss349K -Xmx681574K -XX:MaxMetaspaceSize=104857K -Xms681574K -XX:MetaspaceSize=104857K
|
||||||
|
@ -179,8 +179,8 @@ Which will result in the following:
|
||||||
Total 95 (delta 31), reused 0 (delta 0)
|
Total 95 (delta 31), reused 0 (delta 0)
|
||||||
|
|
||||||
-----> Java app detected
|
-----> Java app detected
|
||||||
-----> Installing OpenJDK 1.8... *done*
|
-----> Installing OpenJDK... *done*
|
||||||
-----> Installing Maven 3.3.1... *done*
|
-----> Installing Maven... *done*
|
||||||
-----> Installing settings.xml... *done*
|
-----> Installing settings.xml... *done*
|
||||||
-----> Executing: mvn -B -DskipTests=true clean install
|
-----> Executing: mvn -B -DskipTests=true clean install
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[[getting-started.installing]]
|
[[getting-started.installing]]
|
||||||
== Installing Spring Boot
|
== Installing Spring Boot
|
||||||
Spring Boot can be used with "`classic`" Java development tools or installed as a command line tool.
|
Spring Boot can be used with "`classic`" Java development tools or installed as a command line tool.
|
||||||
Either way, you need https://www.java.com[Java SDK v1.8] or higher.
|
Either way, you need https://www.java.com[Java SDK v17] or higher.
|
||||||
Before you begin, you should check your current Java installation by using the following command:
|
Before you begin, you should check your current Java installation by using the following command:
|
||||||
|
|
||||||
[source,shell,indent=0,subs="verbatim"]
|
[source,shell,indent=0,subs="verbatim"]
|
||||||
|
|
|
@ -35,8 +35,7 @@ If Jackson's XML extension is not available and JAXB is available, XML can be re
|
||||||
|
|
||||||
include::code:MyThing[]
|
include::code:MyThing[]
|
||||||
|
|
||||||
JAXB is only available out of the box with Java 8.
|
You will need to ensure that the JAXB library is part of your project, for example by adding:
|
||||||
If you use a more recent Java generation, add the following dependency to your project:
|
|
||||||
|
|
||||||
[source,xml,indent=0,subs="verbatim"]
|
[source,xml,indent=0,subs="verbatim"]
|
||||||
----
|
----
|
||||||
|
|
Loading…
Reference in New Issue