1234567891011121314151617181920212223242526272829303132333435 |
- server:
- port: 8081
- servlet:
- context-path:
- spring:
- web:
- resources:
- static-locations: classpath:/static/,classpath:/META-INF/resources/,classpath:/META-INF/resources/webjars/,file:${gc.starter.file.basePath},file:${gc.starter.file.uiPath}
- mvc:
- throw-exception-if-no-handler-found: true
-
- static-path-pattern: /dataroom/**
- servlet:
- multipart:
-
- max-file-size: 500MB
- max-request-size: 500MB
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: org.h2.Driver
-
- url: jdbc:h2:file:/db/h2DBData
- username: root
- password: ${DB_PASSWORD:123456}
- schema: classpath:init-h2.sql
- gc:
- starter:
- file:
-
- basePath: /data
-
- urlPrefix: http://${IP:127.0.0.1}:${PORT:${server.port}}${server.servlet.context-path}/dataroom
-
- uiPath: /app/dataRoom/ui
|