当前位置:   article > 正文

SpringCloud学习-SpringCloudCommons_springframework/cloud/spring-cloud-commons/4.0.4/s

springframework/cloud/spring-cloud-commons/4.0.4/spring-cloud-commons-4.0.4.

@EnableDiscoveryClient

Commons提供EnableDiscoveryClient注释,通过META-INF/spring.factories查找DiscoveryClient接口的实现。Discovery Client的实现将在org.springframework.cloud.client.discovery.EnableDiscoveryClient下面的spring.factories中添加一个配置类。

默认情况下,DiscoveryClient的实现将使用远程发现服务器自动注册本地SpringBoot服务器。可以通过在@EnableDiscoveryClient中设置autoRegister=false来禁用此功能

ServiceRegistry

Commons提供了一个ServiceRegistry接口。它提供了诸如registerderegister之类的方法。允许提供定制的注册服务。Registration是一个标记

@Configuration
@EnableDiscoveryClient(autoRegister=false)
public class MyConfiguration {
	private ServiceRegistry registry;
	public MyConfiguration(ServiceRegistry registry) {
        this.registry = registry;
    }

    // 通过一些外部过程调用,例如事件或自定义执行器端点。
    public void register() {
        Registration registration = constructRegistration();
        this.registry.register(registration);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

每个ServiceRegistry都有自己的Registry实现

服务部门自动注册

默认情况下,ServiceRegistry将自动注册正在运行的服务。要禁用该行为,有两种方法。可以设置@EnableDiscoveryClient(autoRegister=false)永久禁用自动注册,也可以通过配置文件来配置spring.cloud.service-registry.auto-registration.enabled=false禁用该行为

SpringRestTemplate作为负载均衡客户端

RestTemplate可以自动配置为使用功能区。要创建负载均衡RestTemplate创建RestTemplate @Bean并使用@LoadBalanced限定符

@Configuration
public class MyConfiguration {

    @LoadBalanced
    @Bean
    RestTemplate restTemplate() {
        return new RestTemplate();
    }
}

public class MyClass {
    @Autowired
    private RestTemplate restTemplate;

    public String doOtherStuff() {
        String results = restTemplate.getForObject("http://stores/stores", String.class);
        return results;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

URI需要使用虚拟主机名(服务名称,而不是主机名)。Ribbon客户端用户创建完整的物理地址

重试失败的请求

负载均衡RestTemplate可以配置为重试失败的请求。默认情况下,该逻辑被禁用,可以通过配置来设置spring.cloud.loadbalancer.retry.enabled=false。可以使用属性client.ribbon.MaxAutoRetriesclient.ribbon.MaxAutoRetriesNextServerclient.ribbon.OkToRetryOnAllOperations

多个RestTemplate对象

多个Bean,首先必须声明@Primary注释,消除不合格的@Autowired注入

@Configuration
public class MyConfiguration {

    @LoadBalanced
    @Bean
    RestTemplate loadBalanced() {
        return new RestTemplate();
    }

    @Primary
    @Bean
    RestTemplate restTemplate() {
        return new RestTemplate();
    }
}

public class MyClass {
    @Autowired
    private RestTemplate restTemplate;

    @Autowired
    @LoadBalanced
    private RestTemplate loadBalanced;

    public String doOtherStuff() {
        return loadBalanced.getForObject("http://stores/stores", String.class);
    }

    public String doStuff() {
        return restTemplate.getForObject("http://example.com", String.class);
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32

如果看到错误java.lang.IllegalArgumentException: Can not set org.springframework.web.client.RestTemplate field com.my.app.Foo.restTemplate to com.sun.proxy.$Proxy89 ,需要尝试RestOperations或者设置spring.aop.proxyTargetClass=true

忽略网络接口

有的时候,某些服务需要忽略,可以使用正则来配置。

application.yml

spring:
	cloud:
		inetuils:
			preferedNetworks:
				- 192.168
				- 10.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

也可以强制使用本地地址
application.yml

spring:
	cloud:
		inetuils:
			useOnlySiteLocalInterfaces:true
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/137628
推荐阅读
相关标签
  

闽ICP备14008679号