Advertisement
Guest User

Untitled

a guest
Mar 17th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. spring:
  2. application:
  3. name: CWS
  4. jpa:
  5. hibernate:
  6. dialect: org.hibernate.dialect.MySQLInnoDBDialect
  7. naming-strategy: org.hibernate.cfg.EJB3NamingStrategy
  8. ddl-auto: create-drop
  9. datasource:
  10. driverClassName: com.mysql.jdbc.Driver
  11. url: jdbc:mysql://localhost/workshop
  12. username: root
  13. password: ad7fad7f
  14. jackson:
  15. serialization:
  16. fail-on-empty-beans: false
  17.  
  18. server:
  19. context-path: /api
  20.  
  21. logging:
  22. level:
  23. org.springframework.web: DEBUG
  24. org.hibernate: ERROR
  25. com.example.CWS: INFO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement