package com.kidgrow.log.properties;
|
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @Description: 日志链路跟踪配置<br>
|
* @Project: <br>
|
* @CreateDate: Created in 2020/2/4 16:05 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
@Getter
|
@Setter
|
@ConfigurationProperties(prefix = "kidgrow.trace")
|
@RefreshScope
|
public class TraceProperties {
|
/**
|
* 是否开启日志链路追踪
|
*/
|
private Boolean enable = false;
|
}
|