io.github.hpsocket.soa.starter.web.cloud.config.SoaFeignClientsScanConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hp-soa-starter-web-cloud Show documentation
Show all versions of hp-soa-starter-web-cloud Show documentation
hp-soa: a fully functional, easy-to-use, and highly scalable microservice framework
The newest version!
package io.github.hpsocket.soa.starter.web.cloud.config;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnExpression;
import org.springframework.cloud.openfeign.EnableFeignClients;
/** HP-SOA Spring Cloud Feign 配置 */
@AutoConfiguration
@EnableFeignClients("${hp.soa.web.cloud.feign-clients.base-package}")
@ConditionalOnExpression("'${hp.soa.web.cloud.feign-clients.base-package:}' != ''")
public class SoaFeignClientsScanConfig
{
}