35 lines
761 B
YAML
35 lines
761 B
YAML
|
|
|
||
|
|
# Tomcat
|
||
|
|
server:
|
||
|
|
port: 8909
|
||
|
|
|
||
|
|
# Spring
|
||
|
|
spring:
|
||
|
|
application:
|
||
|
|
# 应用名称
|
||
|
|
name: xhpc-workorder
|
||
|
|
profiles:
|
||
|
|
# 环境配置
|
||
|
|
active: dev
|
||
|
|
cloud:
|
||
|
|
nacos:
|
||
|
|
discovery:
|
||
|
|
# 服务注册地址
|
||
|
|
server-addr: 127.0.0.1:8848
|
||
|
|
config:
|
||
|
|
# 配置中心地址
|
||
|
|
server-addr: 127.0.0.1:8848
|
||
|
|
# 配置文件格式
|
||
|
|
file-extension: yml
|
||
|
|
# 共享配置
|
||
|
|
shared-configs:
|
||
|
|
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
|
||
|
|
logging:
|
||
|
|
level:
|
||
|
|
root: info
|
||
|
|
com.xhpc.workorder.mapper: debug
|
||
|
|
|
||
|
|
pattern:
|
||
|
|
console: '%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n'
|
||
|
|
file: '%d{yyyy/MM/dd-HH:mm:ss} [%thread] %-5level %logger- %msg%n'
|