Proof of concept for a SpringBoot Application working in Glassfish 4.1.2
- "/" root shows a random axolotl picture between two possible ones.
Example
GET http://localhost:8080/axolotl/
- "/greeting" takes a "name" paramaeter and displays a greeting. Additionally it counts the number of times the endpoint has been called since the start of the application.
Example:
GET http://localhost:8080/axolotl/greeting?name=Darkona
{
"id": 3,
"message": "Hello Darkona! I'm Axolotl!"
}
- 1.0.0 Initial version
mvn clean package spring-boot:repackage