Advertisement
Guest User

Untitled

a guest
Jun 12th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. server.port=8081
  2.  
  3. #spring.thymeleaf.cache=false
  4. #spring.thymeleaf.enabled=true
  5. #spring.thymeleaf.prefix=classpath:/templates/
  6. #spring.thymeleaf.suffix=.html
  7.  
  8. spring.application.name=Bootstrap Spring Boot
  9.  
  10. #Hibernate
  11.  
  12. spring.datasource.url=jdbc:mysql://localhost:3306/totsdb?autoReconnect=true&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=UTC
  13. spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
  14. #com.mysql.cj.jdbc.Driver
  15. spring.datasource.username=root
  16. spring.datasource.password=11211211203
  17.  
  18. #Jpa
  19. spring.jpa.hibernate.ddl-auto=update
  20. spring.jpa.show-sql=true
  21. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement