在resources / logback-spring.xml中使用application.properties值

时间:2018-11-05 05:59:32

标签: xml spring-boot

我想在resources / logback-spring.xml中使用spring boot的application.properties值。

但是不要这样使用它: application.properties

server.kafka.host0=kafka-0

logback-spring.xml

<producerConfig>bootstrap.servers=${server.kafka.host0}:9092</producerConfig>

我该怎么写?救救我。

1 个答案:

答案 0 :(得分:1)

您可以使用here

中所述的<springProperty>标签来访问它
<springProperty scope="context" name="kafkaHost0" source="server.kafka.host0"/>
<producerConfig>bootstrap.servers=${kafkaHost0}:9092</producerConfig>