You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#mybatis-plus配置
|
|
|
|
mybatis-plus:
|
|
|
|
mapper-locations: classpath:com/logpm/**/mapper/*Mapper.xml
|
|
|
|
#实体扫描,多个package用逗号或者分号分隔
|
|
|
|
typeAliasesPackage: com.logpm.**.entity
|
|
|
|
|
|
|
|
#swagger扫描路径配置
|
|
|
|
swagger:
|
|
|
|
base-packages:
|
|
|
|
- org.springblade
|
|
|
|
- com.logpm
|
|
|
|
|
|
|
|
#oss配置
|
|
|
|
oss:
|
|
|
|
enabled: true
|
|
|
|
name: minio
|
|
|
|
tenant-mode: false
|
|
|
|
endpoint: http://192.168.2.100:9000
|
|
|
|
access-key: minio
|
|
|
|
secret-key: 123123123
|
|
|
|
bucket-name: logpm
|
|
|
|
|
|
|
|
#blade配置
|
|
|
|
blade:
|
|
|
|
#本地文件上传
|
|
|
|
file:
|
|
|
|
remote-mode: true
|
|
|
|
upload-domain: http://localhost:8999
|
|
|
|
remote-path: /usr/share/nginx/html
|
|
|
|
|
|
|
|
logging:
|
|
|
|
config: classpath:logback.xml
|
|
|
|
|
|
|
|
|
|
|
|
spring:
|
|
|
|
main:
|
|
|
|
allow-circular-references: true
|
|
|
|
|
|
|
|
|