test-config.yml 320 B

1234567891011121314151617181920212223242526
  1. spring:
  2. datasource:
  3. driver-class-name: com.mysql.jdbc.Driver
  4. max-active: 20
  5. max-idle: 8
  6. min-idle: 8
  7. validation-query: SELECT 1
  8. test-on-borrow: true
  9. ---
  10. spring:
  11. profiles: dev
  12. hello:
  13. text: hello world devvvvvvvvv!
  14. ---
  15. spring:
  16. profiles: test
  17. hello:
  18. text: hello world testtttttttt!