Skip to content

Instantly share code, notes, and snippets.

@TopekoX
Last active January 27, 2025 01:39
Show Gist options
  • Save TopekoX/19ebe369d21f571246d63189ff46c7a7 to your computer and use it in GitHub Desktop.
Save TopekoX/19ebe369d21f571246d63189ff46c7a7 to your computer and use it in GitHub Desktop.
Springboot build to production

Build Springboot app to production using maven

  • Build skip test
mvn clean install -DskipTests

or run use profile prod

mvn spring-boot:run -Dspring-boot.run.profiles=prod
  • Running jar file in target directory
java -jar -Dspring.profiles.active=prod XXX.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment