Advertisement
Guest User

Untitled

a guest
Sep 30th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. pring.h2.console.enabled=true
  2. spring.h2.console.path=/h2
  3. #Spring data JPA properties
  4. spring.datasource.url=jdbc:h2:mem:testdb:MODE=MySQL;DB_CLOSE_ON_EXIT=FALSE
  5. spring.datasource.username=sa
  6. spring.datasource.password=
  7.  
  8. spring.jpa.hibernate.ddl-auto=update
  9.  
  10. spring.jpa.show-sql=true
  11. spring.jpa.hibernate.format_sql=true
  12.  
  13. hibernate.dialect=org.hibernate.dialect.H2Dialect
  14.  
  15. spring.thymeleaf.cache = false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement