This template demonstrates building a Spring MVC application. It uses Maven to build the application and deploy it to Platform.sh.
A sample Hello World application is provided as a starting point. It includes a MongoDB database, and the sample application shows how to make the database connection. The example code also demonstrates how to access the Platform.sh environment variables using the Platform.sh Config Reader library.
- Java 11
- MongoDB 3.6
- Automatic TLS certificates
- Maven-based build
The following files and additions make the framework work. If using this project as a reference for your own existing project, replicate the changes below to your project.
- .platform/routes.yaml: Platform.sh allows you to define the routes.
- .platform/services.yaml: Platform.sh allows you to completely define and configure the topology and services you want to use on your project.
- .platform.app.yaml: You control your application and the way it will be built and deployed on Platform.sh via a single configuration file.
- An additional library dependency,
platformsh/config-reader-java
, has been added. It provides convenience wrappers for accessing the Platform.sh environment variables.