上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 58 下一页
摘要: 参考: https://blog.csdn.net/qq_41767337/article/details/89002422 https://www.iteye.com/blog/breezylee-2054101 阅读全文
posted @ 2019-10-30 14:13 毛会懂 阅读(2389) 评论(0) 推荐(0) 编辑
摘要: @Bean修饰的方法参数的注入方式: 方法参数默认注入方式为Autowired,即先根据类型匹配,若有多个在根据名称进行匹配。 1:复杂类型可以通过@Qualifier(value=“XXX”)限定; 2:对于普通类型使用@Value(XXX)指定; @PropertySource("classpa 阅读全文
posted @ 2019-10-30 14:06 毛会懂 阅读(13808) 评论(1) 推荐(2) 编辑
摘要: 來自:https://www.cnblogs.com/shengulong/p/8280993.html 一个mvn dependency:tree命令执行的输出如下: [INFO] +- junit:junit:jar:3.8.1:test (scope not updated to compil 阅读全文
posted @ 2019-10-30 10:13 毛会懂 阅读(1393) 评论(0) 推荐(0) 编辑
摘要: 来自:https://www.iteye.com/blog/yuri-liuyu-960964 CATALINA_BASE与CATALINA_HOME的区别 到底CATALINA_HOME和CATALINA_BASE有什么区别呢,之前因为都是小打小闹的在服务器上安装一个tomcat就得了,然后根据前 阅读全文
posted @ 2019-10-29 11:07 毛会懂 阅读(1520) 评论(0) 推荐(1) 编辑
摘要: JAVA 中为快速定位,抛出异常的位置。往往需要在日志中描述。 log.err("异常出错点", e); 会将出错时的堆栈信息显示出来。 package com.jqyc.jase; import static org.junit.Assert.*; import org.apache.log4j. 阅读全文
posted @ 2019-10-29 10:39 毛会懂 阅读(956) 评论(0) 推荐(0) 编辑
摘要: e.printStackTrace()通常是打印在控制台的,但是,有时候程序上线了需要看这个堆栈的内容就不容易了,一来生产环境打印的东西很多或者很少,二来有时候无法直接查看到,这个时候就需要把这些内容记录下来,比如记录到数据库中,下面的方法可以完整记录。 Java代码 public static v 阅读全文
posted @ 2019-10-29 10:38 毛会懂 阅读(2948) 评论(0) 推荐(0) 编辑
摘要: 因为多机环境fanout广播模式,每台机器需要使用自己的队列接受消息 所以尝试使用以下的方案 private static final String QUEUE_NAME="foo."+IPUtils.getLocalhostIp(); @RabbitListener(queues = QUEUE_ 阅读全文
posted @ 2019-10-26 13:43 毛会懂 阅读(6491) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/2716fb975720 https://blog.csdn.net/skiof007/article/details/80914318 阅读全文
posted @ 2019-10-26 09:53 毛会懂 阅读(355) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/milicool/p/9662447.html https://www.cnblogs.com/skychenjiajun/p/9037324.html https://www.cnblogs.com/ityouknow/p/6120544.html 阅读全文
posted @ 2019-10-18 13:33 毛会懂 阅读(151) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43317568/article/details/89989172 阅读全文
posted @ 2019-10-18 13:32 毛会懂 阅读(1644) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 58 下一页