application.yml 577 B

1234567891011121314151617181920212223242526
  1. logging:
  2. level:
  3. org.hswebframework: DEBUG
  4. org.hswebframework.expands: ERROR
  5. com.ruiqi: DEBUG
  6. access-logger: INFO
  7. com.netflix: ERROR
  8. spring:
  9. aop:
  10. auto: true
  11. proxy-target-class: true
  12. profiles:
  13. active: dev
  14. datasource:
  15. url: jdbc:h2:mem:test
  16. username : sa
  17. password :
  18. type: com.alibaba.druid.pool.DruidDataSource
  19. jpa:
  20. generate-ddl: true
  21. show-sql: true
  22. hibernate:
  23. ddl-auto: update
  24. mybatis:
  25. mapper-locations: org/hswebframework/web/dao/test/*.xml
  26. dynamic-datasource: true