Advertisement
Guest User

Untitled

a guest
Feb 19th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # create and drop tables and sequences, loads import.sql
  2. spring.jpa.hibernate.ddl-auto=update
  3.  
  4. spring.jpa.show-sql = true
  5.  
  6. # Oracle settings
  7. spring.datasource.url=jdbc:mysql://localhost:3306/netflix
  8. spring.datasource.username=admin
  9. spring.datasource.password=admin
  10.  
  11. spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
  12.  
  13. # Use spring.jpa.properties.* for Hibernate native properties (the prefix is
  14. # stripped before adding them to the entity manager)
  15.  
  16. # The SQL dialect makes Hibernate generate better SQL for the chosen database
  17. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement