6 changed files with 160 additions and 66 deletions
@ -0,0 +1,38 @@
@@ -0,0 +1,38 @@
|
||||
/* |
||||
* Copyright 2013-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
* |
||||
*/ |
||||
|
||||
package org.springframework.cloud.netflix.feign.ribbon; |
||||
|
||||
import feign.Client; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
||||
import org.springframework.cloud.netflix.ribbon.SpringClientFactory; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
/** |
||||
* @author Spencer Gibb |
||||
*/ |
||||
@Configuration |
||||
class DefaultFeignLoadBalancedConfiguration { |
||||
@Bean |
||||
@ConditionalOnMissingBean |
||||
public Client feignClient(CachingSpringLoadBalancerFactory cachingFactory, |
||||
SpringClientFactory clientFactory) { |
||||
return new LoadBalancerFeignClient(new Client.Default(null, null), |
||||
cachingFactory, clientFactory); |
||||
} |
||||
} |
@ -0,0 +1,54 @@
@@ -0,0 +1,54 @@
|
||||
/* |
||||
* Copyright 2013-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
* |
||||
*/ |
||||
|
||||
package org.springframework.cloud.netflix.feign.ribbon; |
||||
|
||||
import feign.Client; |
||||
import feign.httpclient.ApacheHttpClient; |
||||
import org.apache.http.client.HttpClient; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
||||
import org.springframework.cloud.netflix.ribbon.SpringClientFactory; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
/** |
||||
* @author Spencer Gibb |
||||
*/ |
||||
@Configuration |
||||
@ConditionalOnClass(ApacheHttpClient.class) |
||||
@ConditionalOnProperty(value = "feign.httpclient.enabled", matchIfMissing = true) |
||||
class HttpClientFeignLoadBalancedConfiguration { |
||||
|
||||
@Autowired(required = false) |
||||
private HttpClient httpClient; |
||||
|
||||
@Bean |
||||
@ConditionalOnMissingBean(Client.class) |
||||
public Client feignClient(CachingSpringLoadBalancerFactory cachingFactory, |
||||
SpringClientFactory clientFactory) { |
||||
ApacheHttpClient delegate; |
||||
if (this.httpClient != null) { |
||||
delegate = new ApacheHttpClient(this.httpClient); |
||||
} else { |
||||
delegate = new ApacheHttpClient(); |
||||
} |
||||
return new LoadBalancerFeignClient(delegate, cachingFactory, clientFactory); |
||||
} |
||||
} |
@ -0,0 +1,53 @@
@@ -0,0 +1,53 @@
|
||||
/* |
||||
* Copyright 2013-2017 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
* |
||||
*/ |
||||
|
||||
package org.springframework.cloud.netflix.feign.ribbon; |
||||
|
||||
import feign.Client; |
||||
import feign.okhttp.OkHttpClient; |
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; |
||||
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
||||
import org.springframework.cloud.netflix.ribbon.SpringClientFactory; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
|
||||
/** |
||||
* @author Spencer Gibb |
||||
*/ |
||||
@Configuration |
||||
@ConditionalOnClass(OkHttpClient.class) |
||||
@ConditionalOnProperty(value = "feign.okhttp.enabled", matchIfMissing = true) |
||||
class OkHttpFeignLoadBalancedConfiguration { |
||||
|
||||
@Autowired(required = false) |
||||
private okhttp3.OkHttpClient okHttpClient; |
||||
|
||||
@Bean |
||||
@ConditionalOnMissingBean(Client.class) |
||||
public Client feignClient(CachingSpringLoadBalancerFactory cachingFactory, |
||||
SpringClientFactory clientFactory) { |
||||
OkHttpClient delegate; |
||||
if (this.okHttpClient != null) { |
||||
delegate = new OkHttpClient(this.okHttpClient); |
||||
} else { |
||||
delegate = new OkHttpClient(); |
||||
} |
||||
return new LoadBalancerFeignClient(delegate, cachingFactory, clientFactory); |
||||
} |
||||
} |
Loading…
Reference in new issue