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

tech.mhuang.pacebox.springboot.autoconfiguration.trace.openfeign.TraceOpenFeignProperties Maven / Gradle / Ivy

The newest version!
package tech.mhuang.pacebox.springboot.autoconfiguration.trace.openfeign;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import tech.mhuang.pacebox.springboot.autoconfiguration.ConfigConsts;

/**
 * Feign 配置
 *
 * @author mhuang
 * @since 2021.0.0.4
 */
@Data
@ConfigurationProperties(prefix = ConfigConsts.TRACE_OPENFEIGN)
public class TraceOpenFeignProperties {
    private boolean enable = Boolean.TRUE;
    private String skipPattern = "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy