Guest User

Untitled

a guest
Feb 12th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. management.security.enabled=false
  2.  
  3. #==== connect to default mysql ======#
  4. spring.jpa.hibernate.ddl-auto=update
  5. spring.datasource.url=jdbc:mysql://localhost:3306/tutorial?useSSL=false&allowPublicKeyRetrieval=true
  6. spring.datasource.username=tutorial
  7. spring.datasource.password=tutorial123
  8. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  9. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
  10.  
  11. #==== connect to other mysql ======#
  12. other.jpa.hibernate.ddl-auto=update
  13. other.datasource.url=jdbc:mysql://localhost:3306/other?useSSL=false&allowPublicKeyRetrieval=true
  14. other.datasource.username=other
  15. other.datasource.password=other123
  16. other.datasource.driver-class-name=com.mysql.jdbc.Driver
  17. other.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
  18.  
  19. logging.level.org.springframework.security=DEBUG
Add Comment
Please, Sign In to add comment