Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. # application-mysql.yaml
  2. spring:
  3. jpa:
  4. # Show SQL. DO NOT use this in production.
  5. show-sql: true
  6. properties:
  7. hibernate:
  8. dialect: org.hibernate.dialect.MySQL57Dialect
  9. ddl-auto: none # None by Default
  10. # Beautify SQL
  11. format_sql: true
  12. # To override the Primary Key Generation Strategy for MySQL
  13. mapping-resources:
  14. - db/orm/mysql-orm.xml
  15.  
  16. datasource:
  17. url: jdbc:mysql://localhost:3306/openbankingapi
  18. username: root
  19. password: root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement