Advertisement
Guest User

application.yml

a guest
May 17th, 2016
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. spring:
  2. application:
  3. name: application
  4. jpa:
  5. show-sql: false
  6. properties:
  7. hibernate:
  8. format_sql: true
  9. hibernate:
  10. dialect: org.hibernate.dialect.MySQLInnoDBDialect
  11. naming-strategy: org.hibernate.cfg.ImprovedNamingStrategy
  12. ddl-auto: create-drop
  13. datasource:
  14. driverClassName: com.mysql.jdbc.Driver
  15. url: jdbc:mysql://localhost:3306/filmr
  16. username: root
  17. password:
  18. jackson:
  19. serialization:
  20. fail-on-empty-beans: false
  21. write-dates-as-timestamps: false
  22. server:
  23. context-path: /filmr
  24.  
  25. logging:
  26. file: my_first_log.txt
  27. level:
  28. org.springframework.web: ERROR
  29. org.hibernate: ERROR
  30. filmr: DEBUG
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement