Advertisement
Guest User

Untitled

a guest
Jul 9th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. spring.jpa.hibernate.ddl-auto=create
  2.  
  3. spring.datasource.type=com.zaxxer.hikari.HikariDataSource
  4. spring.datasource.url=jdbc:mysql://localhost:3306/webproject?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&useSSL=false
  5. spring.datasource.username=aaaaa
  6. spring.datasource.password=aaaaa
  7.  
  8. #Hikari will use the above plus the following to setup connection pooling
  9. spring.datasource.hikari.minimumIdle=5
  10. spring.datasource.hikari.maximumPoolSize=20
  11. spring.datasource.hikari.idleTimeout=30000
  12. spring.datasource.hikari.poolName=SpringBootJPAHikariCP
  13. spring.datasource.hikari.maxLifetime=2000000
  14. spring.datasource.hikari.connectionTimeout=30000
  15.  
  16. #thymeleaf properties
  17. #spring dev-tools autobuild
  18. #intellij commpiler settings auto-build enabled
  19. #shitt ctrl + alt -> registry -> compiler.automate.allow.when.app.running
  20. spring.thymeleaf.cache=false
  21.  
  22.  
  23. spring.devtools.livereload.enabled=true
  24. spring.devtools.livereload.port=35729
  25. spring.devtools.restart.enabled=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement