See here for more informations: http://blog.netgloo.com/2014/10/06/spring-boot-data-access-with-jpa-hibernate-and-mysql/
- Run the application and go on http://localhost:8080/
- Use the following urls to invoke controllers methods and see the interactions
with the database:
/user/save?email=[email]&name=[name]
: create a new user with an auto-generated id and email and name as passed values./user/delete?id=[id]
: delete the user with the passed id./user/get-by-email?email=[email]
: retrieve the id for the user with the passed email address.
Open the application.properties
file and set your own configurations for the
database connection.
- Java 7
- Maven 3
Go on the project's root folder, then type:
$ mvn spring-boot:run
Import as Existing Maven Project and run it as Spring Boot App.