04 2022 档案

摘要: 阅读全文
posted @ 2022-04-29 16:57 八英里 阅读(23) 评论(0) 推荐(0) 编辑
摘要:前言 我们在做WS服务器的时候,如果我们在接收消息的方法中对所有用户群发消息的时候,如果不用线程池发送,那么就相当于在该线程中串行的发送消息,如果用户较多,就会占用大量时间,这时就需要使用线程池。 但是直接使用线程池的话,如果同时有3个连接,我们创建的线程池的线程数量是5,那么在使用中就会占用15个 阅读全文
posted @ 2022-04-29 15:08 八英里 阅读(1999) 评论(0) 推荐(0) 编辑
摘要:https://baijiahao.baidu.com/s?id=1726865192597493129&wfr=spider&for=pc 阅读全文
posted @ 2022-04-29 11:31 八英里 阅读(16) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_45315664/article/details/122507470 阅读全文
posted @ 2022-04-26 11:43 八英里 阅读(192) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/u013905744/article/details/93643487 阅读全文
posted @ 2022-04-25 17:02 八英里 阅读(37) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_35634181/article/details/104473308?spm=1001.2101.3001.6650.3&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EC 阅读全文
posted @ 2022-04-24 16:59 八英里 阅读(74) 评论(0) 推荐(0) 编辑
摘要:FinancePaymentEditParam param= (FinancePaymentEditParam) editParam.newInstance(); 阅读全文
posted @ 2022-04-22 09:50 八英里 阅读(18) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/sunnyzyq/article/details/103527380 阅读全文
posted @ 2022-04-21 11:26 八英里 阅读(11) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq360694660/article/details/82877222 这个与Bean的生命周期联系起来,先实例化《constructors》,填充属性<autowire>。再执init-method属性的。postconstruct修饰的 阅读全文
posted @ 2022-04-21 09:32 八英里 阅读(24) 评论(0) 推荐(0) 编辑
摘要:1、导入的包: import org.springframework.web.context.request.RequestContextHolder; import org.springframework.web.context.request.ServletRequestAttributes; 阅读全文
posted @ 2022-04-18 15:57 八英里 阅读(2083) 评论(0) 推荐(0) 编辑
摘要:BladeUser bladeUser = new BladeUser(); bladeUser.setUserId("1"); bladeUser.setPhone("2"); HttpServletRequest request =((ServletRequestAttributes) Requ 阅读全文
posted @ 2022-04-18 14:59 八英里 阅读(152) 评论(0) 推荐(0) 编辑
摘要:RequestLogAspect 阅读全文
posted @ 2022-04-18 14:06 八英里 阅读(78) 评论(0) 推荐(0) 编辑
摘要:package com.yiautos.psf.order.service.impl; import org.junit.Assert; import org.junit.Test; import org.mockito.Mockito; import java.util.ArrayList; im 阅读全文
posted @ 2022-04-18 11:14 八英里 阅读(79) 评论(0) 推荐(0) 编辑
摘要:package com.yiautos.psf.order.service.impl; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.*; imp 阅读全文
posted @ 2022-04-18 11:13 八英里 阅读(39) 评论(0) 推荐(0) 编辑
摘要:package com.yiautos.psf.order.service.impl; import org.junit.*; public class JunitTest { @BeforeClass public static void beforeClass() { System.out.pr 阅读全文
posted @ 2022-04-18 11:05 八英里 阅读(71) 评论(0) 推荐(0) 编辑
摘要:package com.yiautos.psf.sup.service.impl; import org.assertj.core.util.Arrays; import org.junit.Assert; import org.junit.Test; import org.junit.runner 阅读全文
posted @ 2022-04-18 11:01 八英里 阅读(58) 评论(0) 推荐(0) 编辑
摘要:todo 阅读全文
posted @ 2022-04-17 21:57 八英里 阅读(17) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_45145809/article/details/109328224 阅读全文
posted @ 2022-04-15 14:16 八英里 阅读(22) 评论(0) 推荐(0) 编辑
摘要:https://glory.blog.csdn.net/article/details/100023415?spm=1001.2101.3001.6661.1&utm_medium=distribute.pc_relevant_t0.none-task-blog-2%7Edefault%7ECTRL 阅读全文
posted @ 2022-04-15 11:24 八英里 阅读(30) 评论(0) 推荐(0) 编辑
摘要:https://gitee.com/jc3wish/Bifrost 阅读全文
posted @ 2022-04-15 10:43 八英里 阅读(103) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/yaomingyang/article/details/102753043 阅读全文
posted @ 2022-04-14 17:43 八英里 阅读(207) 评论(0) 推荐(0) 编辑
摘要:1.特性(Features)列的“D”即表示该队列是持久化的(Durable),若队列不是持久化的,或发送的消息未设置持久化的属性,在RabbitMQ重启后,消息都会丢失; 2.Features列的“Excl”即表明该队列是排他的,对于排他队列,只有创建它的连接有权访问,连接断开后,排他队列将自动删 阅读全文
posted @ 2022-04-14 16:43 八英里 阅读(748) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_43871678/article/details/108742176 阅读全文
posted @ 2022-04-14 15:43 八英里 阅读(16) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/simba_1986/article/details/77823309?spm=1001.2101.3001.6650.1&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTR 阅读全文
posted @ 2022-04-14 14:01 八英里 阅读(50) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/dz77dz/article/details/115111559; https://pig66.blog.csdn.net/article/details/51004754?spm=1001.2101.3001.6650.1&utm_medium=dist 阅读全文
posted @ 2022-04-13 16:52 八英里 阅读(16) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/m0_38045306/article/details/115183261 阅读全文
posted @ 2022-04-13 16:50 八英里 阅读(19) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zhou920786312/article/details/119444822 阅读全文
posted @ 2022-04-13 16:37 八英里 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-13 13:58 八英里 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-04-13 11:40 八英里 阅读(17) 评论(0) 推荐(0) 编辑
摘要:show full processlist; 阅读全文
posted @ 2022-04-13 10:19 八英里 阅读(19) 评论(0) 推荐(0) 编辑

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