29 lines
777 B
YAML
29 lines
777 B
YAML
# Tomcat
|
|
server:
|
|
port: 9212
|
|
|
|
# Spring
|
|
spring:
|
|
application:
|
|
# 应用名称
|
|
name: stwzhj-data2StKafka
|
|
profiles:
|
|
# 环境配置
|
|
active: @profiles.active@
|
|
autoconfigure:
|
|
exclude: org.springframework.boot.autoconfigure.elasticsearch.ElasticsearchRestClientAutoConfiguration
|
|
|
|
# 日志配置
|
|
logging:
|
|
level:
|
|
org.springframework: warn
|
|
org.apache.dubbo: warn
|
|
com.alibaba.nacos: warn
|
|
org.mybatis.spring.mapper: error
|
|
org.apache.dubbo.config: error
|
|
org.apache.kafka: DEBUG
|
|
org.springframework.kafka: DEBUG
|
|
# 临时处理 spring 调整日志级别导致启动警告问题 不影响使用等待 alibaba 适配
|
|
org.springframework.context.support.PostProcessorRegistrationDelegate: error
|
|
config: classpath:logback-plus.xml
|