| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- server:
- port: 8087
- servlet:
- context-path: /attendance
- # 数据源
- spring:
- profiles:
- active: prod
- application:
- name: attendance
- main:
- allow-circular-references: true
- # datasource:
- # username: root
- # driver-class-name: com.mysql.cj.jdbc.Driver
- # password: root
- # url: jdbc:mysql://127.0.0.1:3306/attendance?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&rewriteBatchedStatements=true&serverTimezone=GMT%2B8
- # password: Chuanghai_2022.
- # url: jdbc:mysql://172.16.20.66:3306/attendance?characterEncoding=utf-8&useSSL=FALSE&useAffectedRows=TRUE&allowMultiQueries=true&serverTimezone=GMT%2B8
- #配置文件传输的大小
- servlet:
- multipart:
- enabled: true
- file-size-threshold: 0
- max-file-size: 30MB
- max-request-size: 30MB
- mybatis-plus:
- mapper-locations: classpath:/mapper/attendance/*.xml
- # global-config:
- # db-config:
- # id-type: assign_id
- logging:
- level:
- com.chuanghai: error #debug
|