| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- server:
- port: ${service.port.algorithm}
- #文件大小
- spring:
- servlet:
- multipart:
- max-file-size: 20MB
- max-request-size: 50MB
- # mybatis配置
- mybatis:
- # 搜索指定包别名
- typeAliasesPackage: com.zd.alg
- # 配置mapper的扫描,找到所有的mapper.xml映射文件
- mapperLocations: classpath:mapper/**/*.xml
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- call-setters-on-nulls: true
- # Mybatis开启驼峰映射
- mapUnderscoreToCamelCase: true
- #okhttp 配置
- ok-http:
- connect-timeout-ms: 500
- keep-alive-duration-sec: 5000
- max-idle-connections: 100
- read-timeout-ms: 500
- write-timeout-ms: 500
- sys:
- mqtt:
- topics: lab/news # 订阅主题, 多个用,隔开
- ## 默认为true 不需要订阅则关闭
- inbound: true
- ## 默认为true 不需要发送则关闭
- outbound: true
-
- file:
- path: /home/AIPIC
- # swagger-ui(生产环境建议关闭)
- swagger-ui:
- enabled: true
- # 版本信息?? 不需修改
- version:
- version: "@project.version@"
- description: "@project.description@"
- artifact-id: "@project.artifactId@"
|