spring-cloud
暗夜潜行
这个作者很懒,什么都没留下…
展开
-
spring-cloud ----------- eureka
父工程pom.xml <dependencyManagement> <dependencies> <!--spring cloud--> <dependency> <groupId>org.springframework.cloud<...原创 2019-05-26 22:37:14 · 124 阅读 · 0 评论 -
spring-cloud ----------------- hystrix 服务熔断器
hystrixpom.xml<!--hystrix 服务安全管理: 服务降级 服务熔断 --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-s...原创 2019-05-27 13:05:35 · 104 阅读 · 0 评论 -
spring-cloud ------------------ feign
Feign可以把Rest的请求进行隐藏,伪装成类似SpringMVC的Controller一样。你不用再自己拼接url,拼接参数等等操作,一切都交给Feign去做。其中支持负载均衡Ribbon、服务熔断Hystixpom.xml<!-- feign 内部依赖Ribbon、hystrix 可以不写hystrix依赖 但是Ribbon依赖不可去掉--> <...原创 2019-05-27 14:27:12 · 113 阅读 · 0 评论 -
spring-cloud ------------------zuul网关
所有的微服务访问读的通过网关访问。实现了:路由 负载均衡Ribbon 服务熔断hystrix创建getaway服务模块pom.xml<dependencies> <!--zuul网关 对外暴露 访问微服务必须都的通过网关访问--> <dependency> <groupId&g...原创 2019-05-27 19:46:13 · 223 阅读 · 0 评论 -
linux中安装nginx编译报错
nginx编译报错[root@vm_0_2_centos nginx-1.12.2]# ./configure --prefix=/application/nginx-1.12.2 --user=www --group=www --with-http_ssl_module --with-http_stub_status_modulechecking for OS+ Linux 3.10.0...转载 2019-05-29 14:41:15 · 744 阅读 · 0 评论 -
linux安装nginx -------------make && make install报错
报错:make: *** No rule to make target `build', needed by `default'. Stop.解决:跟新yum:yum update删除原先解压的nginx重新解压一份添加依赖的库:yum install -y gcc pcre pcre-devel openssl openssl-devel gd gd-devel...转载 2019-05-29 15:27:34 · 8786 阅读 · 0 评论