29 lines
628 B
YAML
29 lines
628 B
YAML
|
server:
|
||
|
port: 8080
|
||
|
|
||
|
spring:
|
||
|
datasource:
|
||
|
url: jdbc:mysql://101.43.255.47:3306/ai_interviewer?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
|
||
|
username: Jerry
|
||
|
password: 2002811
|
||
|
|
||
|
jackson:
|
||
|
default-property-inclusion: non_null
|
||
|
|
||
|
mvc:
|
||
|
pathmatch:
|
||
|
matching-strategy: ant_path_matcher
|
||
|
|
||
|
#dev //说明现在是开发环境
|
||
|
profiles:
|
||
|
active: dev
|
||
|
|
||
|
redis:
|
||
|
database: 11
|
||
|
host: localhost
|
||
|
port: 6379
|
||
|
|
||
|
servlet:
|
||
|
multipart:
|
||
|
max-file-size: 50MB #单个文件大小限制
|
||
|
max-request-size: 50MB #总文件大小限制(允许存储文件的文件夹大小)
|