Guest User

Untitled

a guest
Nov 21st, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. spring.datasource.url=jdbc:mariadb://127.0.0.1:3306/csr
  2. spring.datasource.driverClassName=org.mariadb.jdbc.Driver
  3. spring.datasource.username=test
  4. spring.datasource.password=1234567890
  5.  
  6. spring.datasource.tomcat.max-active=20
  7. spring.datasource.tomcat.max-idel=5
  8.  
  9.  
  10. spring.jpa.show-sql=true
  11. # Hibernate ddl auto (create, create-drop, update): with "create-drop" the database
  12. # schema will be automatically created afresh for every start of application
  13. spring.jpa.hibernate.ddl-auto=create
  14.  
  15. # Allows Hibernate to generate SQL optimized for a particular DBMS
  16. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
Add Comment
Please, Sign In to add comment