Advertisement
Guest User

Untitled

a guest
Oct 8th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. server.port=3001
  2.  
  3. ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
  4. spring.datasource.url= jdbc:mysql://localhost:3306/db_example?useSSL=false&serverTimezone=UTC&useLegacyDatetimeCode=false
  5. spring.datasource.username= root
  6. spring.datasource.password= root
  7.  
  8.  
  9. ## Hibernate Properties
  10. # The SQL dialect makes Hibernate generate better SQL for the chosen database
  11. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
  12. spring.jpa.hibernate.ddl-auto = update
  13.  
  14. ## Hibernate Logging
  15. logging.level.org.hibernate.SQL = DEBUG
  16.  
  17. spring.application.name=user-service
  18. security.oauth2.resource.user-info-uri=http://localhost:8080/authentication-server/user
  19. spring.jackson.serialization.fail-on-empty-beans=false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement