123456789101112131415161718192021222324252627282930313233343536 |
- # 环境配置
- server:
- port: 9012
- servlet:
- context-path: /api/fengkaili
- # condition
- spel:
- scheduling: true # 定时任务是否执行
- multiSource: false # 是否多数据源配置
- spring:
- # database
- datasource:
- hikari:
- connection-init-sql: SET NAMES utf8mb4 COLLATE utf8mb4_unicode_ci # SqlServer, Oracle 无需设置类型
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: cp-root@2022++
- url: jdbc:mysql://47.97.181.40:3306/mjava?serverTimezone=Asia/Shanghai&useUnicode=yes&characterEncoding=UTF-8&useSSL=true
- jpa:
- database: MYSQL
- database-platform: org.hibernate.dialect.MySQL57Dialect
- hibernate:
- ddl-auto: none
- # dingtalk
- dingtalk:
- agentId: 2664525556
- appKey: dingmcbz0lceeusy2kk4
- appSecret: nhNVAbjjtb1Y_Q3WM1SkV4Wk3qDxTjfKEVUZd2iMrF5DtlGVcVDi5aIK-8CundeZ
- corpId: dingade22a8c4fd34b8535c2f4657eb6378f
- aesKey:
- token:
- operator: "0504284411785810" # 徐欢, OA管理员账号 [0开头需要转一下字符串]
|