Advertisement
Guest User

Untitled

a guest
Mar 1st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. #tymeleaf
  2. spring.thymeleaf.cache=false
  3. spring.thymeleaf.enabled=true
  4. spring.thymeleaf.prefix=classpath:/templates/
  5. spring.thymeleaf.suffix=.html
  6. spring.application.name=Bootstrap Spring Boot
  7.  
  8. ## h2 DataSource
  9. spring.datasource.driver-class-name=org.h2.Driver
  10. spring.datasource.url=jdbc:h2:mem:bootapp;DB_CLOSE_DELAY=-1
  11. spring.datasource.username=sa
  12. spring.datasource.password=
  13.  
  14. ## DataSource
  15. spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
  16. spring.datasource.username=postgres
  17. spring.datasource.password=root
  18. spring.datasource.driver-class-name=org.postgresql.Driver
  19.  
  20. ## Hibernate
  21. spring.jpa.hibernate.ddl-auto=create
  22. spring.jpa.show-sql=true
  23. spring.jpa.properties.hibernate.format_sql=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement