application.yml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. server:
  2. port: 443
  3. ssl:
  4. key-store: classpath:9564748_api.jiayuepowertech.com.pfx
  5. key-store-type: PKCS12
  6. key-store-password: JY[7d28439aff975b7e01a6bde97cc460afbf70308b07b023809bf9d839e61284bb22ed37382bc5cd497b651b1f0e9e16befb8f590920cd9d2f452d30bcd8a06762199423c6f524f2085e66a3691fff57e7dd960714a8cc26da64f85a49ce18be812494fb33f29eea00]
  7. enabled-protocols: "TLSv1.2"
  8. ciphers: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
  9. servlet:
  10. session:
  11. cookie:
  12. http-only: true
  13. secure: true
  14. logging:
  15. config: classpath:logback-ssi.xml
  16. #设置提供的服务名
  17. spring:
  18. application:
  19. name: ssq-mybatis-plus
  20. #配置数据库
  21. datasource:
  22. druid:
  23. stat-view-servlet.enabled: false
  24. driver-class-name: com.mysql.cj.jdbc.Driver
  25. type: com.alibaba.druid.pool.DruidDataSource
  26. url: jdbc:mysql://localhost:3307/pfr?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8&autoReconnect=true&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai
  27. username: JY[15a0b9e58aef5b73fbbc12ce85ab5046b22a703e45019dbf7dd7041c8c60ea061cca717220548d86baa4cab57ebcc42db62172178c4cc299f243cfe7a3550e3b367284368dc3a183b350b92b810da5b2030a647aaede5baf735c6dcc77700a5325773e91]
  28. password: JY[bbe20dde79320dfbe7bca925e07c57c13d079c72f1547fb97023020262a339f2a293e466cfc9ee9f0cb7c139bdcb78bccdf0fe9090a3da72a09f645873af6a7696c286540112c2d0f634a15ed013827d078b6edd6afc45df94278d5cd0da622a2c88f5e52b4ad5b7ab]
  29. mybatis-plus:
  30. typeAliasesPackage: com.jiayue.pfr.entity
  31. configuration:
  32. # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
  33. log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
  34. mapper-locations: classpath:mapper/system/*.xml
  35. global-config:
  36. db-column-underline: true
  37. logic-delete-field: del_flag
  38. logic-delete-value: 1
  39. logic-not-delete-value: 0