mysql spring boot configuration

Solutions on MaxInterview for mysql spring boot configuration by the best coders in the world

showing results for - "mysql spring boot configuration"
Kevin
16 Feb 2020
1spring.jpa.hibernate.ddl-auto=update
2spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/db_example
3spring.datasource.username=springuser
4spring.datasource.password=ThePassword
5spring.datasource.driver-class-name =com.mysql.jdbc.Driver
6#spring.jpa.show-sql: trueCopy