You can build your Java apps with native image support and deploy those apps to Cloud Foundry.
A growing number of Java users are building Java apps using support for native images. For more information, see Native Image in the GraalVM documentation.
Java users deploying to Cloud Foundry can deploy apps compiled using native image support. However, the Cloud Foundry Java buildpack does not provide support to build, compile, and turn apps into a native image. You must perform those steps before deploying to Cloud Foundry.
To build an app to run on Cloud Foundry, use native build tools as described below.
This section describes how to deploy a Java app with native image support using Native Build Tools. If you do not want to build using Cloud Native Buildpacks, you can build and compile directly using the Native Build Tools.
To build a Java app using Native Build Tools:
Obtain an Ubuntu Bionic computer, VM, or container. Ubuntu Bionic is recommended for best compatibility with the Cloud Foundry cflinuxfs3
root filesystem. Ubuntu 22.04 LTS (Jammy Jellyfish) is recommended for use with cflinuxfs4
.
Install GraalVM. See Get Started with GraalVM.
Install the Java Native Image tools. See Install Native Image.
To add the Native Build Tools to your Maven or Gradle project, follow the instructions in Add the native build tools plugin in the Spring documentation. This only needs to be done once.
Clone the example repository from GitHub:
git clone https://github.com/paketo-buildpacks/samples
cd samples/java/native-image/java-native-image-sample
Build the example image:
mvn -Pnative -DskipTests package
For more information about building with Native Build Tools, see Getting started with native build tools in the Spring documentation.
This section describes how to deploy a Java app with native image support using a direct build.
To deploy a Java app with native image support using the binary buildpack:
Zip the executable created by your build tool, either Maven or Gradle. For example, with Maven, zip demo.zip target/demo
. Alternatively, you can copy the executable into a directory by itself. For example, with Maven, mkdir -p ./out && cp target/demo ./out/
. This is the root for cf push
.
Push the root ZIP file or directory you created in the previous step. If you use a directory instead of a ZIP archive, adjust the -p
argument. This is important so that it only uploads the compiled binary, not your entire project. You can adjust other properties or use a manifest.yml
file to deploy as well.
cf push -b binary_buildpack -p demo.zip -c ./target/demo native-image
Regardless of how you build your app, with Spring Boot v2.5 and Spring Native v0.10.1, there is a bug that causes cf push
to fail. The problem is caused by conditional behavior in Spring Boot Actuator when run on TAS for VMs. It is fixed in Spring Native v0.10.2.
For more information, see the spring-projects-experimental repository on GitHub.
You can also work around this issue by adding the following hints above your @SpringBootapp
annotation:
For example:
@NativeHint(trigger = ReactiveTAS for VMsActuatorAutoConfiguration.class, types = {
@TypeHint(types = EndpointTAS for VMsExtension.class, access = AccessBits.ANNOTATION),
@TypeHint(typeNames = "org.springframework.boot.actuate.autoconfigure.TAS for VMs.TAS for VMsEndpointFilter"),
@TypeHint(typeNames = "org.springframework.boot.actuate.autoconfigure.TAS for VMs.reactive.TAS for VMsWebFluxEndpointHandlerMapping$TAS for VMsLinksHandler", access = AccessBits.LOAD_AND_CONSTRUCT
| AccessBits.DECLARED_METHODS) })
@NativeHint(trigger = TAS for VMsActuatorAutoConfiguration.class, types = {
@TypeHint(types = EndpointTAS for VMsExtension.class, access = AccessBits.ANNOTATION),
@TypeHint(typeNames = "org.springframework.boot.actuate.autoconfigure.TAS for VMs.TAS for VMsEndpointFilter"),
@TypeHint(typeNames = "org.springframework.boot.actuate.autoconfigure.TAS for VMs.servlet.TAS for VMsWebEndpointServletHandlerMapping$TAS for VMsLinksHandler", access = AccessBits.LOAD_AND_CONSTRUCT
| AccessBits.DECLARED_METHODS) })
@SpringBootapp
public class Demoapp {
public static void main(String[] args) {
Springapp.run(Demoapp.class, args);
}
}