pigx-codegen-dev.yml 694 B

1234567891011121314151617181920212223242526
  1. ## spring security 配置
  2. security:
  3. oauth2:
  4. client:
  5. client-id: ENC(gPFcUOmJm8WqM3k3eSqS0Q==)
  6. client-secret: ENC(gPFcUOmJm8WqM3k3eSqS0Q==)
  7. scope: server
  8. # 数据源配置
  9. spring:
  10. datasource:
  11. type: com.zaxxer.hikari.HikariDataSource
  12. driver-class-name: com.mysql.jdbc.Driver
  13. username: root
  14. password: root
  15. url: jdbc:mysql://127.0.0.1:3306/pigx?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false
  16. jackson:
  17. time-zone: GMT+8
  18. date-format: yyyy-MM-dd HH:mm:ss
  19. resources:
  20. static-locations: classpath:/static/,classpath:/views/
  21. # mybaits 模块配置
  22. mybatis-plus:
  23. typeAliasesPackage: com.pig4cloud.pigx.codegen.entity