For further reference, please consider the following sections:
The following guides illustrate how to use some features concretely:
- Building a RESTful Web Service
- Serving Web Content with Spring MVC
- Building REST services with Spring
- Accessing Data with JPA
- Handling Form Submission
- Building a RESTful Web Service with Spring Boot Actuator
curl -v http://localhost:8080/greeting?name=Joe
curl -v -s -H 'Accept-Language: de' http://localhost:8080/greeting?name=Joe
curl -v -s -H 'Accept-Language: en' http://localhost:8080/greeting?name=Joe
curl -v -s -H 'Accept-Language: fr_FR' http://localhost:8080/greeting?name=Joe
curl -v -X DELETE http://localhost:8080/api/customers/1
http://localhost:8080/actuator
java -jar .\demo-0.0.1-SNAPSHOT.war --spring.profiles.active=dev