2025-08-05 09:22:16 +00:00
|
|
|
# application.yml
|
|
|
|
|
server:
|
|
|
|
|
port: 8112
|
|
|
|
|
file:
|
|
|
|
|
upload:
|
|
|
|
|
temp-dir: /tmp/chunked-uploads
|
|
|
|
|
dir: /uploads
|
|
|
|
|
|
|
|
|
|
spring:
|
|
|
|
|
servlet:
|
|
|
|
|
multipart:
|
|
|
|
|
max-file-size: 10MB
|
|
|
|
|
max-request-size: 10MB
|
2025-08-06 09:55:23 +00:00
|
|
|
datasource:
|
|
|
|
|
driver-class-name: org.postgresql.Driver
|
|
|
|
|
url: jdbc:postgresql://10.100.51.86:5432/postgres?serverTimeZone=UTC
|
|
|
|
|
username: unis
|
|
|
|
|
password: unis@123
|
2025-08-05 09:22:16 +00:00
|
|
|
|
|
|
|
|
knife4j:
|
|
|
|
|
production: false
|
|
|
|
|
basic:
|
2025-08-06 09:55:23 +00:00
|
|
|
enable: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mybatis-plus:
|
|
|
|
|
mapper-locations: classpath*:mappers/*.xml
|
|
|
|
|
typeAliasesPackage: com.unisinsight.project.entity
|
|
|
|
|
global-config:
|
|
|
|
|
db-config:
|
|
|
|
|
logic-delete-value: 1
|
|
|
|
|
logic-not-delete-value: 0
|
|
|
|
|
logic-delete-field: deleted
|
|
|
|
|
id-type: auto
|
|
|
|
|
field-strategy: 0
|
|
|
|
|
db-column-underline: true
|
|
|
|
|
db-type: pgsql
|
|
|
|
|
configuration:
|
|
|
|
|
map-underscore-to-camel-case: true
|
|
|
|
|
cache-enabled: false
|
|
|
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|