Advertisement
Guest User

Untitled

a guest
May 25th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.67 KB | None | 0 0
  1. # Database connection settings
  2. spring.datasource.url=jdbc:mysql://localhost:3306/movie-mvc?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
  3. spring.datasource.username=movie-mvc
  4. spring.datasource.password=movie
  5.  
  6. # Specify the DBMS
  7. spring.jpa.database = MYSQL
  8.  
  9. # Show or not log for each sql query
  10. spring.jpa.show-sql = false
  11.  
  12.  
  13. # Hibernate ddl auto (create, create-drop, update)
  14. spring.jpa.hibernate.ddl-auto = update
  15.  
  16. # Use spring.jpa.properties.* for Hibernate native properties (the prefix is
  17. # stripped before adding them to the entity manager)
  18. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement