| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- server:
- port: 8084
- tomcat:
- max-http-form-post-size:
- #数据源配置
- spring:
- jackson:
- #日期格式化
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- datasource:
- # url: jdbc:mysql://127.0.0.1:3306/repairs?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- url: jdbc:mysql://192.168.1.41:3306/repairs?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- #driver-class-name: com.mysql.jdbc.Driver
- # mysql6以上需要使用下面的连接配置
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: root
- #数据库方言
- jpa:
- database-platform: org.hibernate.dialect.MySQLDialect
- #配置文件传输的大小
- servlet:
- multipart:
- enabled: true
- file-size-threshold: 0
- max-file-size: 100MB
- max-request-size: 100MB
- logging:
- config:
- classpath: log4j.properties
- #mybatis配置
- mybatis:
- mapper-locations: classpath:mapper/**/*.xml
- # 图片地址
- img:
- # 图片保存地址
- #saveLocation: E:\devImg\repair\
- saveLocation: /usr/local/nginx-1.18.0/html/repair_reporting_system/repair_image/
- # 图片预览地址
- #showHost: http://10.244.137.3/dev-img/
- showHost: https://jtishfw.ncjti.edu.cn/baoxiu/dev-img/
- #show-host: http://192.168.31.115/dev-img/
- # show-host: http://192.168.1.41/dev-img/
- #微校相关配置
- weixiao:
- app_key: EE28EE2C93296F4E
- app_secret: 5071958561AA629530AAA31503088330
- ocode: 1015730314
- #serverUrl: http://10.244.137.3:8084
- requestUrl: https://jtishfw.ncjti.edu.cn/baoxiu/repair-h5
- serverUrl: https://jtishfw.ncjti.edu.cn/baoxiu/
- title: 故障维修通知
- content: 用户您好,您的故障报修单已被维修师傅接单,维修师傅将于半小时后上门维修;请合理安排时间,谢谢合作。
- sender: 维修管理办公室
|