BackEnd Rest Service for Recipes
For building and running the application you need;
- JDK 17
- Maven
- Spring Boot 3
There are several ways to run a Spring Boot application on your local machine. One way is to execute the main
method in the com.mendix.recipe.RecipeApplication
class from your IDE.
Alternatively you can use the Spring Boot Maven plugin like so:
mvn spring-boot:run
Application will initially look for xml files on path specified at application.properties recipe.app.xmlFilePath tag.
After building and running the application locally at 8080 port; available endpoints and model with documentations will be accessed and can be tested on;
Unit tests can be run as;
mvn test