10 2019 档案

gitlab 提示:remote: The project you were looking for could not be found.
摘要:解决: ` 参考:https://gitlab.com/gitlab com/support forum/issues/638 阅读全文

posted @ 2019-10-31 20:41 cag2050 阅读(1798) 评论(0) 推荐(0) 编辑

Invalid Host header 服务器域名访问出现的问题
摘要:出处:https://blog.csdn.net/Cookysurongbin/article/details/86077241 阅读全文

posted @ 2019-10-31 14:59 cag2050 阅读(262) 评论(0) 推荐(0) 编辑

Hadoop 学习资料
摘要:Hadoop 学习资料 | 网址 | 官方文档 | https://hadoop.apache.org/docs/r1.0.4/cn/index.html 版本文档索引 | http://hadoop.apache.org/docs/ 阅读全文

posted @ 2019-10-27 17:02 cag2050 阅读(288) 评论(0) 推荐(0) 编辑

Spring Boot 注入外部配置到应用内部
摘要:Spring Boot允许你外部化你的配置,这样你就可以在不同的环境中使用相同的应用程序代码,你可以使用properties文件、YAML文件、环境变量和命令行参数来外部化配置,属性值可以通过使用@Value注解直接注入到你的bean中,通过Spring的Environment抽象访问,或者通过@C 阅读全文

posted @ 2019-10-25 11:00 cag2050 阅读(237) 评论(0) 推荐(0) 编辑

HashMap、HashTable 区别
摘要:区别项 | HashMap | HashTable | | 继承和实现 | | 线程安全 | 不是线程安全的 | 是线程安全的 key、value是否可以为null | key、value都可以为null | key、value都不可以为null 支持的遍历种类 | 只支持Iterator(迭代器) 阅读全文

posted @ 2019-10-24 17:49 cag2050 阅读(128) 评论(0) 推荐(0) 编辑

throw new RuntimeException(e) 与 e.printStackTrace( ) 的区别
摘要:出处:https://blog.csdn.net/xuzhuaaron1/article/details/73611404 阅读全文

posted @ 2019-10-24 16:45 cag2050 阅读(545) 评论(0) 推荐(0) 编辑

Feign 报错:No fallback instance of type class xxx found for feign client xxx
摘要:通常需要确认配置内容: 1. 开启 Hystrix: 2. Fallback类需要注解 出处:https://www.jianshu.com/p/c8210d878e96 阅读全文

posted @ 2019-10-22 14:43 cag2050 阅读(7997) 评论(0) 推荐(0) 编辑

Spring Cloud Turbine 知识点
摘要:Turbine 默认使用 Eureka 作为注册中心;如果使用 Consul 作为注册中心,需要排除掉 Eureka;pom.xml 如下: 出处:https://www.jianshu.com/p/6ca2b31798cf 阅读全文

posted @ 2019-10-21 17:48 cag2050 阅读(159) 评论(0) 推荐(0) 编辑

微信小程序 学习资料
摘要:学习资料 | 网址 | 下载微信小程序开发工具 | https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html 注册 | https://mp.weixin.qq.com/wxopen/waregister?acti 阅读全文

posted @ 2019-10-16 14:06 cag2050 阅读(318) 评论(0) 推荐(0) 编辑

Consul 知识点
摘要:平时开发时,一般使用consul dev模式,开发模式下kv存储不会持久化存储,全在内存中(重启consul就丢了!),所以一般建议yml配置文件内容,在项目中单独存一个文件,启动调试时,直接把配置文件内容贴到Value框里即可。 以上出处:https://www.cnblogs.com/duanx 阅读全文

posted @ 2019-10-15 17:32 cag2050 阅读(162) 评论(0) 推荐(0) 编辑

Consul 学习资料
摘要:资料 | 网址 | Consul 入门指南 | https://book consul guide.vnzmi.com/ 阅读全文

posted @ 2019-10-15 17:29 cag2050 阅读(189) 评论(0) 推荐(0) 编辑

Logstash 学习资料
摘要:学习资料 | 网址 | Logstash Reference(官方) | https://www.elastic.co/guide/en/logstash/current/introduction.html 阅读全文

posted @ 2019-10-14 19:33 cag2050 阅读(130) 评论(0) 推荐(0) 编辑

Kibana 学习资料
摘要:Kibana 学习资料 | 网址 | Kibana 官方文档 | https://s0www0elastic0co.icopy.site/guide/en/kibana/current/introduction.html Kibana 用户手册(官方,中文)| https://www.elastic 阅读全文

posted @ 2019-10-14 18:00 cag2050 阅读(234) 评论(0) 推荐(0) 编辑

Elasticsearch 报错及解决
摘要:报错: Fielddata is disabled on text fields by default. Set `fielddata=true` on [`your_field_name`] in order to load fielddata in memory by uninverting t 阅读全文

posted @ 2019-10-14 17:19 cag2050 阅读(1894) 评论(0) 推荐(0) 编辑

Eslint 允许使用双等号
摘要:资料 | 网址 | ESlint: Expected !== and instead saw != | https://stackoverflow.com/questions/48375316/eslint expected and instead saw?answertab=votes tab t 阅读全文

posted @ 2019-10-14 13:02 cag2050 阅读(4957) 评论(0) 推荐(0) 编辑

Kibana 的 docker 镜像使用
摘要:1.dockhub镜像网址:https://hub.docker.com/_/kibana 2.下载镜像: 3.创建容器(Kibana 默认的端口为5601): 4.本地访问: 阅读全文

posted @ 2019-10-13 16:45 cag2050 阅读(1754) 评论(0) 推荐(0) 编辑

Zipkin 知识点
摘要:在Spring Cloud D版本,zipkin server通过引入依赖的方式构建工程,自从E版本之后,这一方式改变了,采用官方的jar形式启动。 出处:https://juejin.im/post/5c623c195188256219175369 heading 5 阅读全文

posted @ 2019-10-13 12:06 cag2050 阅读(139) 评论(0) 推荐(0) 编辑

Zipkin 的 Docker 镜像使用
摘要:1.Zipkin 在 dockerhub 上网址:https://hub.docker.com/r/openzipkin/zipkin 2.下载镜像 3.创建容器 4.在浏览器上访问Web界面 阅读全文

posted @ 2019-10-12 19:39 cag2050 阅读(3332) 评论(0) 推荐(0) 编辑

HTTP请求中的Form Data与Request Payload的区别
摘要:出处:https://github.com/kaola fed/blog/issues/105 阅读全文

posted @ 2019-10-12 10:30 cag2050 阅读(134) 评论(0) 推荐(0) 编辑

Spring Cloud Sleuth 知识点
摘要:Spring应用在监测到Java依赖包中有sleuth和zipkin后,会自动在RestTemplate的调用过程中向HTTP请求注入追踪信息,并向Zipkin Server发送这些信息。 出处:http://www.ityouknow.com/springcloud/2018/02/02/spri 阅读全文

posted @ 2019-10-11 19:19 cag2050 阅读(211) 评论(0) 推荐(0) 编辑

Spring Cloud Task 知识点
摘要:Spring Cloud Task的目标是为Spring Boot应用程序提供创建短期运行微服务的功能。 出处:https://blog.csdn.net/peterwanghao/article/details/83033485 阅读全文

posted @ 2019-10-09 12:00 cag2050 阅读(2048) 评论(0) 推荐(0) 编辑

Spring Boot 2实现分布式锁——这才是实现分布式锁的正确姿势!
摘要:参考资料 | 网址 | Spring Boot 2实现分布式锁——这才是实现分布式锁的正确姿势!| http://www.spring4all.com/article/6892 阅读全文

posted @ 2019-10-09 11:02 cag2050 阅读(226) 评论(0) 推荐(0) 编辑

导航

点击右上角即可分享
微信分享提示