1234567891011121314151617181920212223242526272829303132333435363738394041 |
- server:
- port: 443
- ssl:
- key-store: classpath:9564748_api.jiayuepowertech.com.pfx
- key-store-type: PKCS12
- key-store-password: JY[7d28439aff975b7e01a6bde97cc460afbf70308b07b023809bf9d839e61284bb22ed37382bc5cd497b651b1f0e9e16befb8f590920cd9d2f452d30bcd8a06762199423c6f524f2085e66a3691fff57e7dd960714a8cc26da64f85a49ce18be812494fb33f29eea00]
- enabled-protocols: "TLSv1.2"
- ciphers: "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256"
- servlet:
- session:
- cookie:
- http-only: true
- secure: true
- logging:
- config: classpath:logback-ssi.xml
- #设置提供的服务名
- spring:
- application:
- name: ssq-mybatis-plus
- #配置数据库
- datasource:
- druid:
- stat-view-servlet.enabled: false
- driver-class-name: com.mysql.cj.jdbc.Driver
- type: com.alibaba.druid.pool.DruidDataSource
- url: jdbc:mysql://localhost:3307/pfr?useUnicode=true&characterEncoding=UTF-8&characterSetResults=UTF-8&autoReconnect=true&rewriteBatchedStatements=true&serverTimezone=Asia/Shanghai
- username: JY[15a0b9e58aef5b73fbbc12ce85ab5046b22a703e45019dbf7dd7041c8c60ea061cca717220548d86baa4cab57ebcc42db62172178c4cc299f243cfe7a3550e3b367284368dc3a183b350b92b810da5b2030a647aaede5baf735c6dcc77700a5325773e91]
- password: JY[bbe20dde79320dfbe7bca925e07c57c13d079c72f1547fb97023020262a339f2a293e466cfc9ee9f0cb7c139bdcb78bccdf0fe9090a3da72a09f645873af6a7696c286540112c2d0f634a15ed013827d078b6edd6afc45df94278d5cd0da622a2c88f5e52b4ad5b7ab]
- mybatis-plus:
- typeAliasesPackage: com.jiayue.pfr.entity
- configuration:
- # log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
- mapper-locations: classpath:mapper/system/*.xml
- global-config:
- db-column-underline: true
- logic-delete-field: del_flag
- logic-delete-value: 1
- logic-not-delete-value: 0
|