| | |
| | | # env: production |
| | | |
| | | spring: |
| | | # application: |
| | | # name: doumeemes |
| | | profiles: |
| | | active: dev |
| | | |
| | | |
| | | application: |
| | | name: meetingAdmin |
| | | # JSON返回配置 |
| | | jackson: |
| | | # 默认时区 |
| | |
| | | max-file-size: 200MB |
| | | max-request-size: 200MB |
| | | enabled: true |
| | | main: |
| | | allow-circular-references: true |
| | | |
| | | # MyBatis配置 |
| | | mybatis-plus: |
| | | mapper-locations: classpath*:/mappers/**/*.xml |
| | |
| | | cache: |
| | | session: |
| | | # 会话过期时长(s) |
| | | expire: 18000 |
| | | expire: 1800 |
| | | captcha: |
| | | # 验证码过期时长(s) |
| | | expire: 300 |
| | |
| | | level: |
| | | doumeemes.dao: debug |
| | | |
| | | knife4j: |
| | | enable: true |
| | | basic: |
| | | enable: true |
| | | username: admin |
| | | password: 111111 |
| | | |
| | | swagger: |
| | | host: |
| | | title: ${project.name}接口文档 |
| | | description: ${project.name}接口文档 |
| | | enabled: true |
| | | # 禁用swagger时的重定向地址 |
| | | redirect-uri: / |
| | | |
| | | # WEB服务器配置 |
| | | server: |