application.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. # 项目相关配置
  2. zhongzheng:
  3. # 名称
  4. name: zhongzheng-api
  5. # 版本
  6. version: 3.4.0
  7. # 版权年份
  8. copyrightYear: 2021
  9. # 实例演示开关
  10. demoEnabled: true
  11. # 文件路径,使用jvm系统变量,兼容windows和linux;
  12. profile: ${user.dir}/zhongzheng/uploadPath
  13. # 获取ip地址开关
  14. addressEnabled: false
  15. captcha:
  16. # 验证码类型 math 数组计算 char 字符验证
  17. captchaType: math
  18. # line 线段干扰 circle 圆圈干扰 shear 扭曲干扰
  19. captchaCategory: circle
  20. # 数字验证码位数
  21. captchaNumberLength: 1
  22. # 字符验证码长度
  23. captchaCharLength: 4
  24. # 开发环境配置
  25. server:
  26. # 服务器的HTTP端口,默认为8080
  27. port: 5055
  28. servlet:
  29. # 应用的访问路径
  30. context-path: /
  31. # undertow 配置
  32. undertow:
  33. # HTTP post内容的最大大小。当值为-1时,默认值为大小是无限的
  34. max-http-post-size: -1
  35. # 以下的配置会影响buffer,这些buffer会用于服务器连接的IO操作,有点类似netty的池化内存管理
  36. # 每块buffer的空间大小,越小的空间被利用越充分
  37. buffer-size: 512
  38. # 设置IO线程数, 它主要执行非阻塞的任务,它们会负责多个连接, 默认设置每个CPU核心一个线程
  39. io-threads: 8
  40. # 阻塞任务线程池, 当执行类似servlet请求阻塞操作, undertow会从这个线程池中取得线程,它的值设置取决于系统的负载
  41. worker-threads: 256
  42. # 是否分配的直接内存
  43. direct-buffers: true
  44. # # tomcat 配置
  45. # tomcat:
  46. # # tomcat的URI编码
  47. # uri-encoding: UTF-8
  48. # # tomcat最大线程数,默认为200
  49. # max-threads: 500
  50. # # Tomcat启动初始化的线程数,默认值25
  51. # min-spare-threads: 30
  52. # 日志配置
  53. logging:
  54. level:
  55. com.zhongzheng: @logging.level@
  56. org.springframework: warn
  57. config: classpath:logback.xml
  58. # Spring配置
  59. spring:
  60. main:
  61. allow-bean-definition-overriding: true
  62. # 资源信息
  63. messages:
  64. # 国际化资源文件路径
  65. basename: i18n/messages
  66. profiles:
  67. active: @profiles.active@
  68. # 文件上传
  69. servlet:
  70. multipart:
  71. # 单个文件大小
  72. max-file-size: 10MB
  73. # 设置总上传的文件大小
  74. max-request-size: 20MB
  75. # 服务模块
  76. devtools:
  77. restart:
  78. # 热部署开关
  79. enabled: true
  80. application:
  81. name: zz_edu
  82. boot:
  83. admin:
  84. # Spring Boot Admin Client 客户端的相关配置
  85. client:
  86. # 设置 Spring Boot Admin Server 地址
  87. url: http://localhost:${server.port}${spring.boot.admin.context-path}
  88. instance:
  89. prefer-ip: true # 注册实例时,优先使用 IP
  90. # Spring Boot Admin Server 服务端的相关配置
  91. context-path: /admin # 配置 Spring
  92. # Actuator 监控端点的配置项
  93. management:
  94. endpoints:
  95. web:
  96. # Actuator 提供的 API 接口的根目录。默认为 /actuator
  97. base-path: /actuator
  98. exposure:
  99. # 需要开放的端点。默认值只打开 health 和 info 两个端点。通过设置 * ,可以开放所有端点。
  100. include: '*'
  101. endpoint:
  102. logfile:
  103. external-file: ./logs/sys-console.log
  104. # token配置
  105. token:
  106. # 令牌自定义标识
  107. header: AuthorizationToken
  108. # 令牌密钥
  109. secret: abcdefghijklmnopqrstuvwxyz
  110. # 令牌有效期(默认30分钟)
  111. expireTime: 360
  112. # MyBatis配置
  113. # https://baomidou.com/config/
  114. mybatis-plus:
  115. # 对应的 XML 文件位置
  116. mapperLocations: classpath*:mapper/**/*Mapper.xml
  117. # 实体扫描,多个package用逗号或者分号分隔
  118. typeAliasesPackage: com.zhongzheng.**.domain
  119. # 针对 typeAliasesPackage,如果配置了该属性,则仅仅会扫描路径下以该类作为父类的域对象
  120. #typeAliasesSuperType: Class<?>
  121. # 如果配置了该属性,SqlSessionFactoryBean 会把该包下面的类注册为对应的 TypeHandler
  122. #typeHandlersPackage: null
  123. # 如果配置了该属性,会将路径下的枚举类进行注入,让实体类字段能够简单快捷的使用枚举属性
  124. #typeEnumsPackage: null
  125. # 启动时是否检查 MyBatis XML 文件的存在,默认不检查
  126. checkConfigLocation: false
  127. # 通过该属性可指定 MyBatis 的执行器,MyBatis 的执行器总共有三种:
  128. # SIMPLE:该执行器类型不做特殊的事情,为每个语句的执行创建一个新的预处理语句(PreparedStatement)
  129. # REUSE:该执行器类型会复用预处理语句(PreparedStatement)
  130. # BATCH:该执行器类型会批量执行所有的更新语句
  131. executorType: SIMPLE
  132. # 指定外部化 MyBatis Properties 配置,通过该配置可以抽离配置,实现不同环境的配置部署
  133. configurationProperties: null
  134. configuration:
  135. # 自动驼峰命名规则(camel case)映射
  136. # 如果您的数据库命名符合规则无需使用 @TableField 注解指定数据库字段名
  137. mapUnderscoreToCamelCase: true
  138. # 默认枚举处理类,如果配置了该属性,枚举将统一使用指定处理器进行处理
  139. # org.apache.ibatis.type.EnumTypeHandler : 存储枚举的名称
  140. # org.apache.ibatis.type.EnumOrdinalTypeHandler : 存储枚举的索引
  141. # com.baomidou.mybatisplus.extension.handlers.MybatisEnumTypeHandler : 枚举类需要实现IEnum接口或字段标记@EnumValue注解.
  142. defaultEnumTypeHandler: org.apache.ibatis.type.EnumTypeHandler
  143. # 当设置为 true 的时候,懒加载的对象可能被任何懒属性全部加载,否则,每个属性都按需加载。需要和 lazyLoadingEnabled 一起使用。
  144. aggressiveLazyLoading: true
  145. # MyBatis 自动映射策略
  146. # NONE:不启用自动映射
  147. # PARTIAL:只对非嵌套的 resultMap 进行自动映射
  148. # FULL:对所有的 resultMap 都进行自动映射
  149. autoMappingBehavior: PARTIAL
  150. # MyBatis 自动映射时未知列或未知属性处理策
  151. # NONE:不做任何处理 (默认值)
  152. # WARNING:以日志的形式打印相关警告信息
  153. # FAILING:当作映射失败处理,并抛出异常和详细信息
  154. autoMappingUnknownColumnBehavior: NONE
  155. # Mybatis一级缓存,默认为 SESSION
  156. # SESSION session级别缓存,同一个session相同查询语句不会再次查询数据库
  157. # STATEMENT 关闭一级缓存
  158. localCacheScope: SESSION
  159. # 开启Mybatis二级缓存,默认为 true
  160. cacheEnabled: true
  161. global-config:
  162. # 是否打印 Logo banner
  163. banner: true
  164. # 是否初始化 SqlRunner
  165. enableSqlRunner: false
  166. dbConfig:
  167. # 主键类型
  168. # AUTO 数据库ID自增
  169. # NONE 空
  170. # INPUT 用户输入ID
  171. # ASSIGN_ID 全局唯一ID
  172. # ASSIGN_UUID 全局唯一ID UUID
  173. idType: AUTO
  174. # 表名前缀
  175. tablePrefix: null
  176. # 字段 format,例: %s,(对主键无效)
  177. columnFormat: null
  178. # 表名是否使用驼峰转下划线命名,只对表名生效
  179. tableUnderline: true
  180. # 大写命名,对表名和字段名均生效
  181. capitalMode: false
  182. # 全局的entity的逻辑删除字段属性名
  183. logicDeleteField: null
  184. # 逻辑已删除值
  185. logicDeleteValue: 2
  186. # 逻辑未删除值
  187. logicNotDeleteValue: 0
  188. # 字段验证策略之 insert,在 insert 的时候的字段验证策略
  189. # IGNORED 忽略判断
  190. # NOT_NULL 非NULL判断
  191. # NOT_EMPTY 非空判断(只对字符串类型字段,其他类型字段依然为非NULL判断)
  192. # DEFAULT 默认的,一般只用于注解里
  193. # NEVER 不加入 SQL
  194. insertStrategy: NOT_EMPTY
  195. # 字段验证策略之 update,在 update 的时候的字段验证策略
  196. updateStrategy: NOT_EMPTY
  197. # 字段验证策略之 select,在 select 的时候的字段验证策略既 wrapper 根据内部 entity 生成的 where 条件
  198. selectStrategy: NOT_EMPTY
  199. # 开启多租户
  200. tenant:
  201. enabled-tenant: true
  202. # PageHelper分页插件
  203. pagehelper:
  204. helperDialect: mysql
  205. reasonable: true
  206. supportMethodsArguments: true
  207. params: count=countSql
  208. # Swagger配置
  209. swagger:
  210. # 是否开启swagger
  211. enabled: true
  212. # 请求前缀
  213. pathMapping:
  214. # 防止XSS攻击
  215. xss:
  216. # 过滤开关
  217. enabled: true
  218. # 排除链接(多个用逗号分隔)
  219. excludes: /system/notice/*
  220. # 匹配链接
  221. urlPatterns: /system/*,/monitor/*,/tool/*
  222. feign:
  223. # 开启压缩
  224. compression:
  225. request:
  226. enabled: true
  227. response:
  228. enabled: true
  229. okhttp:
  230. enabled: true
  231. hystrix:
  232. enabled: true
  233. tencent:
  234. cloud:
  235. SecretId: AKIDd6XkjTw9D1atwkJceS2NSIuHPK1ThfOr
  236. SecretKey: GG2ZqrdCWcS6Yx72h6F7k7E4ey2qPnwq
  237. aliyun:
  238. sms:
  239. signName: 祥粤学校
  240. registerTemplateCode: SMS_228670004
  241. loginTemplateCode: SMS_228670005
  242. forgetTemplateCode: SMS_228685033
  243. pwdTemplateCode: SMS_230220381
  244. bindNewTelCode: SMS_232178371
  245. accessKeyId: LTAIgC8O2WUXvXuR
  246. accessKeySecret: 1yyCazuT1M6MruBXzgFjP0p9gdMlwX
  247. OpenTheGoodsCode: SMS_230970155 #商品开通提醒
  248. informationNotificationCode: SMS_230965149 #完善报名资料通知
  249. materialReviewCode: SMS_230980165 #报名资料审核通过通知
  250. NotificationOfFailureCode: SMS_230980172 #报名资料审核不通过通知
  251. remainingDaysValidityCode: SMS_230960174 #开通班级有效期还剩天数
  252. completionReminderCode: SMS_230965157 #学时学习完成提醒
  253. schoolHoursCode: SMS_230970166 #学时机构审核通过提醒
  254. auditFailedCode: SMS_230970167 #学时机构审核不通过提醒
  255. ReminderApproval: SMS_230970171 #学时机构审核通过提醒
  256. passTheReminder: SMS_230980180 #学时机构审核不通过提醒
  257. bookingReminder: SMS_230980181 #考试预约提醒
  258. cancellationReminder: SMS_230980183 #考试预约取消提醒
  259. reservationSuccess: SMS_230980186 #考试预约成功提醒
  260. examinationRemind: SMS_230960195 #考试提醒
  261. newExamPass: SMS_230970179 #七大员新考考试通过提醒
  262. newExamFail: SMS_235491082 #七大员新考考试不通过提醒
  263. openingReminder: SMS_230970209 #七大员题库开通提醒(12-22
  264. classRemind: SMS_230965224 #二建继教开班提醒
  265. OverdueReminder: SMS_230980259 #班级过期提醒
  266. OverdueReminderHave: SMS_230965228 #班级过期提醒有学习次数
  267. planReminder: SMS_230970248 #学习计划提醒
  268. commitmentCode: SMS_231190546 #承诺书审核通过通知
  269. commitmentFailsCode: SMS_231215516 #承诺书审核不通过通知