上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 55 下一页

2021年6月1日

nohup 忽略 nohup.out 输出

摘要: 最近项目中使用的springboot打的jar包,放到服务器上跑,为了防止关闭终端窗口导致程序挂掉,采用nohup和&组合命令来操作 命令如下 : nohup java -jar test.jar &但是这种方式启动项目会默认生成一个nohup.out的文件来记录日志,而且这个文件太占磁盘内存了,几 阅读全文

posted @ 2021-06-01 13:09 正义的伙伴! 阅读(3627) 评论(0) 推荐(0) 编辑

2021年5月28日

elementui 发送时间格式到 gin 后端问题

摘要: elementui 前端需要配置 timeFormat: yyyy-MM-ddTHH:mm:ssZ 这样就可以了 <el-date-picker v-model="request.minTime" placeholder="最小时间" type="datetime" :value-format="t 阅读全文

posted @ 2021-05-28 18:44 正义的伙伴! 阅读(189) 评论(1) 推荐(0) 编辑

2021年5月7日

在 Ubuntu 下使用 Puppeteer 时无法加载类库 libX11-xcb.so.1

摘要: 错误: error while loading shared libraries: libX11-xcb.so.1: cannot open shared object file: No such file or directory 安装: sudo apt-get install gconf-se 阅读全文

posted @ 2021-05-07 17:28 正义的伙伴! 阅读(951) 评论(0) 推荐(0) 编辑

2021年4月23日

获取注解上的注解

摘要: 使用 .annotationType().getAnnotation(ABC.class)不是 .getClass().getAnnotation(ABC.class) 阅读全文

posted @ 2021-04-23 14:00 正义的伙伴! 阅读(137) 评论(0) 推荐(0) 编辑

2021年4月22日

tomcat 远程 debug

摘要: catalina.sh 设置 JAVA_OPTS : -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8888 idea 设置 阅读全文

posted @ 2021-04-22 11:09 正义的伙伴! 阅读(51) 评论(0) 推荐(0) 编辑

2021年4月12日

Java 子类 和 父类 执行顺序

摘要: public class Parent { static { System.out.println("parent static"); } { System.out.println("parent code block"); } public Parent(String name){ System. 阅读全文

posted @ 2021-04-12 12:35 正义的伙伴! 阅读(186) 评论(0) 推荐(0) 编辑

2021年4月6日

idea 方法注释模板

摘要: live template <p> author: whmmm </p> * <p> date : $DATE$ $TIME$ </p> 注意配置需要一模一样。。。(通过 /** 然后回车触发) ** * <b> * description: TODO <br/> * author: wanghai 阅读全文

posted @ 2021-04-06 16:28 正义的伙伴! 阅读(248) 评论(0) 推荐(0) 编辑

2021年4月1日

maven 忽略 doc 文档错误

摘要: mvn clean install -DskipTests -Dmaven.javadoc.skip=true 阅读全文

posted @ 2021-04-01 14:23 正义的伙伴! 阅读(145) 评论(0) 推荐(0) 编辑

2021年3月1日

go mod 说明

摘要: module test-12345 go 1.15 require ( vender.go-util v0.0.0 // 必须是三个点 v0.0.0 这种格式!! ) replace ( vender.go-util => ./vender/go-util // 子模块依赖的包替换. 加入 子组件有 阅读全文

posted @ 2021-03-01 11:45 正义的伙伴! 阅读(88) 评论(0) 推荐(0) 编辑

2021年2月25日

windows cmd 快速编辑 模式

摘要: 让Windows命令行始终启用快速编辑模式 在命令行下,快速编辑模式是一种很便捷的操作方式:左键选中,右键复制以及右键从剪贴板粘贴内容,都是相当人性化的功能。但是,在某些临时的快捷方式(比如Github的Git bash here) 中,快速编辑模式是没有办法被记忆的。我们可以设定快速编辑模式缺省选 阅读全文

posted @ 2021-02-25 09:42 正义的伙伴! 阅读(1740) 评论(0) 推荐(0) 编辑

上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 55 下一页

导航

//增加一段JS脚本,为目录生成使用