摘要:
1、参考文档: https://www.centoscn.vip/4317.html 2、剔除服务 格式: curl -X PUT "http://ip:port/eureka/apps/{application}/{instance}/status?value=OUT_OF_SERVICE" 示例 阅读全文
摘要:
https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
摘要:
http://blog.cnkj.site/ 阅读全文
摘要:
官网:http://www.groovy-lang.org/ Step 1:下载Groovy 地址:https://groovy.apache.org/download.html 下载后解压 Step 2:配置环境变量 open .bash_profile export PATH=$PATH:/Us 阅读全文
摘要:
在修改项目的版本号之后,如pom.xml中<version>1.2.0-SNAPSHOT</version>替换为<version>1.0.0-RELEASE</version>后,执行打包报错如下: ·················resolution will not be reattempt 阅读全文
摘要:
https://db-engines.com/en/ranking 阅读全文
摘要:
1、问题排查: 第一次,一定要先启动Provider再启动Consumer!!! rabbitmq为初始状态没有队列信息,然后我又没有启动consumer,所以导致provider找不到queue和exchange。 导致 (reply-code=404, reply-text=NOT_FOUND 阅读全文
摘要:
http://www.ruanyifeng.com/blog/archives.html 阅读全文
摘要:
https://www.xuxueli.com/ 阅读全文
摘要:
1、默认线程池:Executors public class ExecutorsTest { public static void main(String[] args) { /** * newCachedThreadPool:设定一个可缓存的线程池,当线程池长度超过处理的需要,可以灵活回收空闲线程 阅读全文