
artoria.spring.config.feign.FeignSupportProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artoria-extend Show documentation
Show all versions of artoria-extend Show documentation
Artoria is a java technology framework based on the facade pattern.
The newest version!
package artoria.spring.config.feign;
import org.springframework.boot.context.properties.ConfigurationProperties;
/**
* The feign support configuration.
* @author Kahle
*/
@ConfigurationProperties("spring.extension.feign")
public class FeignSupportProperties {
private Boolean requestTransfer;
public Boolean getRequestTransfer() {
return requestTransfer;
}
public void setRequestTransfer(Boolean requestTransfer) {
this.requestTransfer = requestTransfer;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy