Advertisement
Guest User

Untitled

a guest
Mar 15th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. spring.jpa.hibernate.ddl-auto=update
  2.  
  3. # Replace with your connection string
  4. spring.datasource.url=jdbc:mysql://localhost:3306/myapp
  5. spring.datasource.connectionProperties=useUnicode=true;characterEncoding=utf-8;
  6.  
  7. # Replace with your credentials
  8. spring.datasource.username=root
  9. spring.datasource.password=root
  10.  
  11. spring.datasource.test-while-idle=true
  12. spring.datasource.test-on-borrow=true
  13. spring.datasource.connection-test-query=SELECT 1
  14.  
  15. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  16. spring.jpa.database-platform=org.hibernate.dialect.MySQL5InnoDBDialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement