37 lines
775 B
YAML
37 lines
775 B
YAML
#开发环境配置文件
|
|
server:
|
|
servlet:
|
|
context-path: /fileupload
|
|
port: 8080
|
|
serverproperties:
|
|
portNum: 8080
|
|
filePath: /www/fileupload/filedisk
|
|
spring:
|
|
thymeleaf:
|
|
prefix: classpath:/templates/
|
|
cache: false
|
|
check-template: true
|
|
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 500Mb
|
|
max-request-size: 500Mb
|
|
datasource:
|
|
driver-class-name: com.mysql.jdbc.Driver
|
|
url: jdbc:mysql://localhost:3306/db_sysrbacdemo?useUnicode=true&characterEncoding=utf-8&useSSL=true
|
|
username: trs
|
|
password: fileupload
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: update
|
|
show-sql: true
|
|
data:
|
|
elasticsearch:
|
|
cluster-name: Fjiayang
|
|
cluster-nodes: 127.0.0.1:9300
|
|
|
|
|
|
#resources:
|
|
# static-locations: classpath:/templates/
|
|
debug: true
|