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
* * @Description: 日志链路跟踪配置
* @Project:
* @CreateDate: Created in 2020/2/4 16:05
* @Author: liuke */ @Getter @Setter @ConfigurationProperties(prefix = "kidgrow.trace") @RefreshScope public class TraceProperties { /** * 是否开启日志链路追踪 */ private Boolean enable = false; }