# 开发环境配置 server: # 服务器的HTTP端口,默认为8080 port: 8801 servlet: # 应用的访问路径 context-path: / tomcat: # tomcat的URI编码 uri-encoding: UTF-8 # tomcat最大线程数,默认为200 max-threads: 800 # Tomcat启动初始化的线程数,默认值25 min-spare-threads: 30 # 数据源配置 spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://36.148.23.59:3306/communication?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 username: root password: root@123 mybatis: type-aliases-package: com.zehong.communication.entity mapper-locations: classpath*:mapper/**/*Mapper.xml #语音通知接口 voiceNotifyURL: https://api.253.com/open/notify/voice-notify appId: N69N0WkT appKey: IE5F7Jih #批量发送语音 batchVoiceNotifyURL: https://api.253.com/open/notify/batch-voice-notify #阿里云发送短信或批量发送短信 accessKeyId: LTAI2xiZNF3iV2aV accessKeySecret: bprEWwn1M0xgglRQCQEMYSPiYctDk4 #ip白名单 iPWhite: 36.148.1.58,120.0.70.251 #秘钥 secretKey: f225e66813e6d6a663daf919c1935dcb #是否写入本地 isWriteLocal: true logging: # 设置logback.xml位置 # config: classpath:logback.xml # 设置log4j.properties位置 config: classpath:log4j.properties