application-data.yml 671 B

1234567891011121314151617181920212223242526272829
  1. mybatis:
  2. config-location: classpath:mybatis-config.xml
  3. # type-aliases扫描路径
  4. type-aliases-package: tk.mybatis.springboot.model
  5. # mapper xml实现扫描路径
  6. mapper-locations: classpath:com/qxgmat/data/dao/mapping/*.xml,classpath:com/qxgmat/data/relation/mapping/*.xml
  7. property:
  8. order: BEFORE
  9. mapper:
  10. mappers: tk.mybatis.mapper.common.Mapper
  11. not-empty: false
  12. identity: MYSQL
  13. #pagehelper:
  14. # helperDialect: mysql
  15. # reasonable: true
  16. # supportMethodsArguments: true
  17. # params: count=countSql
  18. spring:
  19. devtools:
  20. restart:
  21. enabled: false
  22. flyway:
  23. enabled: true
  24. locations: classpath:db/migration
  25. baseline-on-migrate: true