| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- server:
- port: 8084
- #数据源配置
- spring:
- datasource:
- # url: jdbc:mysql://127.0.0.1:3306/repairs?characterEncoding=utf-8&serverTimezone=UTC&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true
- url: jdbc:mysql://192.168.1.41:3306/repairs?characterEncoding=utf-8&serverTimezone=UTC&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true
- driver-class-name: com.mysql.jdbc.Driver
- # mysql6以上需要使用下面的连接配置
- # driver-class-name: com.mysql.cj.jdbc.Driver
- username: root
- password: root
- #spring security 安全框架
- security:
- user:
- name: admin
- password: 123456
- #数据库方言
- jpa:
- database-platform: org.hibernate.dialect.MySQLDialect
- #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/
- #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
- serverUrl: http://192.168.1.41:8084
- # serverUrl: http://87hhvi.natappfree.cc
- title: 寝室维修通知
- content: 同学你好,你的寝室报修单已被维修师傅接单,维修师傅将于半小时后上门维修;请合理安排时间,谢谢合作。
- sender: 寝室管理办公室
|