Advertisement
Guest User

Untitled

a guest
May 19th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. #JDBC CONNECTION
  2. spring.datasource.url=jdbc:mysql://localhost:3306/conversation_web?useSSL=false
  3. spring.datasource.username=root
  4. spring.datasource.password=asdf
  5. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  6.  
  7. spring.datasource.hikari.minimum-idle=7
  8. spring.datasource.hikari.pool-name=Test-1
  9.  
  10. spring.jpa.hibernate.ddl-auto=none
  11. spring.jpa.hibernate.show-sql=true
  12. spring.jpa.hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect
  13. #org.hibernate.dialect.MySQL5Dialect
  14. spring.jpa.properties.hibernate.current_session_context_class=org.springframework.orm.hibernate5.SpringSessionContext
  15. # Show or not log for each sql query
  16. spring.jpa.show-sql = true
  17.  
  18.  
  19. #spring.mvc.favicon.enabled=false
  20.  
  21. spring.http.encoding.charset=UTF-8
  22. spring.http.encoding.enabled=true
  23. spring.http.encoding.force=true
  24.  
  25. spring.thymeleaf.check-template-location=true
  26. spring.thymeleaf.prefix=classpath:/templates/
  27. spring.thymeleaf.content-type=text/html
  28. spring.thymeleaf.cache=false
  29.  
  30. spring.devtools.restart.enabled=true
  31.  
  32. #server.servlet.session.cookie.max-age=15
  33. server.servlet.session.cookie.name=biskotaki
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement