该文被密码保护。 阅读全文
摘要:
按照之前文章去安装rabbitmq,发现想用新版本的,突然来了波尝试,但是发现了问题,无法访问观礼台页面 [root@instance-z266v0jl opt]# docker exec -i -t rabbitmq /bin/bash root@4f17894f0c59:/# rabbitmq- 阅读全文
该文被密码保护。 阅读全文
该文被密码保护。 阅读全文
摘要:
所谓发布订阅模式,就是发布了消息丢到通道中,消费者进行消费 看代码: 1 首先需要配置这个连接工厂 ,这地方可能有人有疑问,为什么需要单独做一个类呢,是由与这个连接工厂其他地方需要用到,所以以bean的方式注入 @Configuration public class Redisconfig { @V 阅读全文
摘要:
newRatio 是调整新生代和老年代的比例 survivorRatio 是调整eden和surviovor区域的大小 -Dspring.profiles.active=dev mvn install -Dmaven.test.skip=true 阅读全文
摘要:
复制方法一: func copyFile1(srcFile,destFile string)(int,error){ file1,err:=os.Open(srcFile) if err != nil{ return 0,err } file2,err:=os.OpenFile(destFile,o 阅读全文
摘要:
switch语句: package apigo import "fmt" func grade(score int) string { g :="" switch { case score <= 60: g="F" case score > 60: g="a" } return g } func m 阅读全文
摘要:
goroutine go中使用Goroutine来实现并发concurrently。 Goroutine是Go语言特有的名词。区别于进程Process,线程Thread,协程Coroutine,因为Go语言的创造者们觉得和他们是有所区别的,所以专门创造了Goroutine。 Goroutine是与其 阅读全文