Skip to content

Files

Latest commit

435f16f · May 24, 2015

History

History

spring-boot-mysql-hibernate

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 24, 2015
Apr 14, 2015
Apr 14, 2015

Use a MySQL database in a Spring Boot Web Application through Hibernate

See here for more informations: http://blog.netgloo.com/2014/08/17/use-mysql-database-in-a-spring-boot-web-application-through-hibernate/

Usage

  • 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.

Build and run

Configurations

Open the application.properties file and set your own configurations for the database connection.

Prerequisites

  • Java 7
  • Maven 3

From terminal

Go on the project's root folder, then type:

$ mvn spring-boot:run

From Eclipse (Spring Tool Suite)

Import as Existing Maven Project and run it as Spring Boot App.