摘要:
从Log4j切换到Log4j2,没有打包之前日志输出正常,但是打包后总是提示下面内容: 错误一: ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the class 阅读全文
摘要:
设置的地方在构建触发器中 Build after other projects are built:在其他项目构建完成后再进行构建。 Build periodically:周期进行构建 Build when a change is pushed to GitHub:当GitHub有版本库更新时触发J 阅读全文
摘要:
1.泛型类定义以及使用 1 public class People<T> { 2 private T info; 3 4 public People(){ 5 6 } 7 8 public People(T info){ 9 this.info=info; 10 } 11 12 public voi 阅读全文