简介
我希望能够拥有两个不同的弹簧轮廓,并根据配置文件更改为我们的假装构建器的硬编码地址。
目前有以下几点:
return builder.target(cls, "http://" + serviceName);
但我实际上想执行以下操作并覆盖地址:
return builder.target(cls, "http://our-server:8009/" + serviceName);
为什么
有时我们不想在开发环境中运行所有服务。此外,某些服务有时只能通过 zuul 网关获得。
因此,我们在不同的情况和条件下运行相同的代码。
技术细节
我们有以下代码用于构建我们的假客户端。
我们过去一直在使用@FeignClient
注释,但最近我们决定开始手动构建我们的 feignClient。
示例如下:
@FeignClient(name = "ab-document-store", configuration = MultiPartSupportConfiguration.class, fallback = DocumentStoreFallback.class)
我们使用以下命令调用 feignRegistrar 类:
return registerFeignClient(DocumentStoreClient.class, true);
@RequiredArgsConstructor
//@Component
@Slf4j
public class FeignRegistrar {
@Autowired
private Decoder decoder;
@Autowired
private Encoder encoder;
@Autowired
private Client client;
@Autowired
private Contract feignContract;
@Autowired
private ObjectFactory<HttpMessageConverters> messageConverters;
@Autowired
private List<RequestInterceptor> interceptors;
public <T> T register(Class<T> cls, String serviceName, boolean isDocumentStore) {
if(isDocumentStore){
encoder = new MultipartFormEncoder(new SpringEncoder(messageConverters));
}
//Client trustSSLSockets = new Client.Default(getSSLSocketFactory(), new NoopHostnameVerifier());
Feign.Builder builder = Feign.builder()
.client(client)
.encoder(encoder)
.decoder(decoder)
.contract(feignContract)
.logger(new Slf4Logger())
.logLevel(Logger.Level.HEADERS);
builder.requestInterceptor(new RequestInterceptor() {
@Override
public void apply(RequestTemplate template) {
template.header("X-Service-Name", serviceName);
}
});
for(RequestInterceptor interceptor : interceptors) {
builder.requestInterceptor(interceptor);
}
log.debug("Registering {} - as feign proxy ", serviceName);
return builder.target(cls, "http://" + serviceName);
}
public static class Slf4Logger extends Logger {
@Override
protected void log(String configKey, String format, Object... args) {
log.info("{} - {}", configKey, args);
}
}
}
春云属性覆盖
我们还一直在使用属性文件(如application-ENV.property
(和如下条目:
ab-document-store.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
ab-document-store.ribbon.listOfServers: localhost:8025
不幸的是,listOfServers
对我们来说还不够。我们也希望能够分配目录/路径。像这样:
ab-document-store.ribbon.listOfServers: localhost:8025/ab-document-store
其他解决方法
我已经考虑过使用假拦截器将标头潜入所有请求中,例如X-SERVICE-NAME
。然后我们可以将所有服务指向一个地址(例如 localhost:9001(,并将这些请求转发/代理到 localhost:9001/X-service-name。
但是,我更喜欢更简单的解决方案,例如:
ab-document-store.ribbon.listOfServers: localhost:8025/ab-document-store
但这不起作用:(
简介
我使用检测标头的代理找到了解决方案。 因此,我在java端有一个伪装拦截器,它将标头x-service-name
附加到每个假请求。
我还有一个 NodeJS 代理,它可以分析请求、查找x-service-name
并重写请求以成为:x-service-name
/originalRequestPath
。
这使我可以将所有微服务放在 zuul 网关后面,但也可以使用 eureka-over-ride 访问它们。
Java-Feign-Interceptor
Feign.Builder builder = Feign.builder()
.client(client)
.encoder(usedEncoder)
.decoder(decoder)
.contract(feignContract)
.logger(new Slf4Logger())
.logLevel(Logger.Level.HEADERS);
builder.requestInterceptor(new RequestInterceptor() {
@Override
public void apply(RequestTemplate template) {
template.header("X-Service-Name", serviceName);
}
});
NodeJS 代理
在示例中,我的 zuul 网关(或其他代理(位于本地主机:9001 上。 我在听localhost:1200
.
let enableProxyForJava = process.env.ENABLE_PROXY_FOR_JAVA;
if (enableProxyForJava != undefined && enableProxyForJava.toLowerCase() === 'true') {
var httpProxyJava = require('http-proxy');
var proxyJava = httpProxyJava.createProxy();
gutil.log( gutil.colors.green('Enabling Proxy for Java. Set your Eureka overrides to localhost:1200.') );
require('http').createServer(function(req, res) {
console.log("req.headers['x-service-name'] = " + req.headers['x-service-name']);
console.log("Before req.url:"+ req.url);
if( req.headers['x-service-name'] != undefined){
let change = req.headers['x-service-name'] +req.url;
console.log("After req.url:"+ change);
req.url = change;
}
proxyJava.web(req, res, {
target: 'http://localhost:9001/'
});
}).listen(1200);
}
Java 应用程序中具有假装客户端的属性文件
mbak-microservice1.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
mbak-microservice1.ribbon.listOfServers: localhost:1200
mbak-microservice2.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
mbak-microservice2.ribbon.listOfServers: localhost:1200
mbak-document-store.ribbon.NIWSServerListClassName:com.netflix.loadbalancer.ConfigurationBasedServerList
mbak-document-store.ribbon.listOfServers: localhost:1200