Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. spring:
  2. profiles.active: default
  3.  
  4. spring.jpa.hibernate.ddl-auto: none
  5. ---
  6. spring:
  7. profiles: default
  8.  
  9. spring.datasource:
  10. driverClassName: net.sourceforge.jtds.jdbc.Driver
  11. url: jdbc:jtds:sqlserver://IP/DB
  12. username: user
  13. password: password
  14. spring.jpa:
  15. hibernate:
  16. ddlAuto: validate
  17. showSql: true
  18. hibernate:
  19. ddl-auto: none
  20. ---
  21. spring:
  22. profiles: unit-test
  23.  
  24. spring.datasource:
  25. pooled: true
  26. jmxExport: true
  27. driverClassName: org.h2.Driver
  28. username: sa
  29. password:
  30. dbCreate: create-drop
  31. url: jdbc:h2:mem:devDb;MVCC=FALSE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=TRUE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement