Guide for Spring Boot applications written in Java/Kotlin.
Supported JDK Versions
Spring Boot Version | Supported JDK Version |
---|---|
Spring Boot 3.x | JDK 17 or higher |
Spring Boot 2.x | JDK 8 or higher |
On the dashboard, click or ⌘ + K
to open the deployment modal and select the Java template. Then choose a GitHub repository from the dropdown or input a Git repository URL in the Git URL tab.
Apply the following settings to ensure your service runs seamlessly.
Basic Settings
More Options
Deploy
build/libs/[project-name].jar
target/[project-name].jar
ale
, files in the src
directory, except for those defined in WebProperties.Resources
(e.g., /static
), are excluded from the build.,
) to specify multiple directories.api
module as the main class and structure as shown.java -jar api/build/libs/api-0.0.1-SNAPSHOT.jar
<main-module-name>
with the actual module name.core,api