Chapter 15
- You can create an executable JAR file by using the Maven
mvn clean install
command. - The easiest way to deploy a Spring Boot application is to push your application source code to GitHub and link your GitHub repository to your app in Heroku.
- The easiest way to deploy a Spring Boot application is to push your application source code to GitHub and link your GitHub repository to your app in AWS Amplify.
- Docker is a container platform that makes software development, deployment, and shipping easier. Containers are lightweight and executable software packages that include everything that is needed to run software.
- The Spring Boot application is just an executable JAR file that can be executed with Java. You can use it to create a Docker container for your Spring Boot application in a similar way to creating one for any Java JAR application.
- You can pull the latest MariaDB container from the Docker Hub using the Docker
docker pull mariadb:latest
command...