You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://spring-boot-graal.herokuapp.com/hello)
9
9
[](https://hub.docker.com/r/jonashackt/spring-boot-graalvm)
@@ -133,16 +135,16 @@ The list itself is much longer and you could see the wonderful simplicity of thi
133
135
Now to install GraalVM based on JDK11, simply run:
134
136
135
137
```
136
-
sdk install java 20.1.0.r11-grl
138
+
sdk install java 20.2.0.r11-grl
137
139
```
138
140
139
141
SDKMAN now installs GraalVM for us. To have the correct `PATH` configuration in place, you may need to restart your console. If everything went fine, you should see `java -version` react like this:
140
142
141
143
```
142
144
$ java -version
143
-
openjdk version "11.0.7" 2020-04-14
144
-
OpenJDK Runtime Environment GraalVM CE 20.1.0 (build 11.0.7+10-jvmci-20.1-b02)
145
-
OpenJDK 64-Bit Server VM GraalVM CE 20.1.0 (build 11.0.7+10-jvmci-20.1-b02, mixed mode, sharing)
145
+
openjdk version "11.0.8" 2020-07-14
146
+
OpenJDK Runtime Environment GraalVM CE 20.2.0 (build 11.0.8+10-jvmci-20.2-b03)
147
+
OpenJDK 64-Bit Server VM GraalVM CE 20.2.0 (build 11.0.8+10-jvmci-20.2-b03, mixed mode, sharing)
146
148
```
147
149
148
150
@@ -155,7 +157,7 @@ GraalVM brings a special tool `gu` - the GraalVM updater. To list everything tha
When I first thought about a Docker usage, I wanted to pack this build into a `Dockerfile` also - but then I realized, that there's [no easy way of using Docker volumes at Docker build time](https://stackoverflow.com/questions/51086724/docker-build-using-volumes-at-build-time). But I really wanted to mount a Docker volume to my local Maven repository like `--volume "$HOME"/.m2:/root/.m2` to prevent the download of all the Spring Maven dependencies over and over again every time we start our Docker container.
0 commit comments