hibernate with springboot mysql

Solutions on MaxInterview for hibernate with springboot mysql by the best coders in the world

showing results for - "hibernate with springboot mysql"
Nahel
06 Jul 2017
1spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false
2spring.datasource.username= root
3spring.datasource.password= 123456
4
5spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5InnoDBDialect
6
7# Hibernate ddl auto (create, create-drop, validate, update)
8spring.jpa.hibernate.ddl-auto= update
9