12345678910111213141516171819 |
- server:
- # 测试环境
- port: 8000
- # 生产环境
- # port: 18000
- spring:
- application:
- name: fujisu-ocr-server
- profiles:
- active: dev
- # active: test
- # active: prod
- servlet:
- multipart:
- max-file-size: 50MB
- max-request-size: 50MB
- mybatis-plus:
- mapper-locations: classpath*:/mapper/*Mapper.xml
- typeAliasesPackage: com.pavis.ai.app.fjsocrasy.model
|