greathappyforest
5/15/2018 - 6:43 PM

application.properties for mysql

application.properties for mysql

spring.datasource.driver-class-name=com.mysql.jdbc.Driver
#spring.datasource.url=jdbc:mysql://localhost:3306/hello?characterEncoding=utf8
spring.datasource.url=jdbc:mysql://localhost:3306/hello?createDatabaseIfNotExist=true&characterEncoding=utf8
spring.datasource.username=root
spring.datasource.password=root

spring.jpa.hibernate.ddl-auto=update
#spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
spring.jpa.show-sql=true


spring.thymeleaf.mode=LEGACYHTML5


logging.level.org.springframework.web=INFO
logging.level.org.hibernate=ERROR