All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bizmda.log.properties.TraceProperties Maven / Gradle / Ivy

There is a newer version: 1.0.0.RC4
Show newest version
package com.bizmda.log.properties;

import lombok.Getter;
import lombok.Setter;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;

/**
 * 日志链路追踪配置
 *
 * @author zlt
 */
@Setter
@Getter
@ConfigurationProperties(prefix = "zlt.trace")
@RefreshScope
public class TraceProperties {
    /**
     * 是否开启日志链路追踪
     */
    private Boolean enable = false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy