| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- server:
- port: 8086
- # 应用名称
- spring:
- profiles:
- active: dev #开发环境配置文件
- # active: test #测试环境配置文件
- # active: pro #生产环境配置文件
- application:
- name: student_portrait
- datasource:
- # driver-class-name: com.mysql.cj.jdbc.Driver
- # url: jdbc:mysql://172.16.20.45:3306/activerecord?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- # username: root
- # password: Chuanghai_2021.
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://127.0.0.1:3306/student_portrait?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- username: root
- password: root
- servlet:
- multipart:
- enabled: true
- file-size-threshold: 0
- max-file-size: 10MB
- max-request-size: 10MB
- #logging:
- # # 设置logback.xml位置
- # # config: classpath:logs/logback.xml
- # # 设置log4j.properties位置
- # config:
- # classpath: logs/logback.xml
- mybatis-plus:
- configuration:
- # 驼峰命名和底杠命名自动转换
- map-underscore-to-camel-case: true
- # Mybatis默认简单日志
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- # MyBatis 自动映射策略,通过该配置可指定 MyBatis 是否并且如何来自动映射数据表字段与对象的属性,总共有 3 种可选值:
- # AutoMappingBehavior.NONE:不启用自动映射
- # AutoMappingBehavior.PARTIAL:只对非嵌套的 resultMap 进行自动映射
- # AutoMappingBehavior.FULL:对所有的 resultMap 都进行自动映射
- auto-mapping-behavior: full
- global-config:
- db-config:
- # MybatisPlus 设置全局主键生成策略:自增
- id-type: auto
- # 逻辑删除字段名
- logic-delete-field: isDeleted
- # 逻辑删除字面值:未删除为0
- logic-not-delete-value: 0
- # 逻辑删除字面值:删除为1
- logic-delete-value: 1
- #微校相关配置
- weixiao:
- app_key: DB60250B489345ED
- response_type: code
- scope: snsapi_sso
- ocode: 1015730314
- app_secret: 68ED5D4B98DD8817C1558A8FCAF9D1BF
- redirect_uri: http://5d519a3d.cpolar.top/
- #远程IP端口、接口
- decisionEngine:
- url:
- #百胜人员识别
- #product: http://39.108.175.59:9090/device/sync_person
- product: http://39.108.175.59:5389/device/sync_person
- #二维码的门禁记录服务地址
- qrcode: https://chtech.ncjti.edu.cn/access-control/ncjtEntranceGuard/getTrafficRecordViewPageList
- #热水使用记录
- waterUrl: http://192.168.1.34:8080/HotWaters/waterfindConsume.action
- nvr:
- nvrip: 172.22.45.25
- nvrport: 80
- nvruname: admin
- nvrpwd: ncjtxy@2021
|