You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
661 B
YAML
34 lines
661 B
YAML
server:
|
|
port: 50013
|
|
spring:
|
|
application:
|
|
name: tz-exam-service
|
|
profiles:
|
|
active: dev
|
|
cloud:
|
|
nacos:
|
|
server-addr: 127.0.0.1:8848
|
|
username: nacos
|
|
password: nacos
|
|
config:
|
|
namespace: ${spring.profiles.active}
|
|
file-extension: yaml
|
|
discovery:
|
|
namespace: ${spring.profiles.active}
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 2MB
|
|
max-request-size: 2MB
|
|
data:
|
|
redis:
|
|
repositories:
|
|
enabled: false
|
|
devtools:
|
|
restart:
|
|
enabled: true
|
|
livereload:
|
|
port: 35730
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
logging:
|
|
config: classpath:logback-tz.xml |