上一页 1 2 3 4 5 6 7 ··· 22 下一页

2019年9月30日

java命令行工具打包

摘要: https://introcs.cs.princeton.edu/java/85application/jar/jar.html 自己写的manifest.mf注意: https://blog.csdn.net/neareast/article/details/8875342 (1)后缀名必须为.m 阅读全文

posted @ 2019-09-30 21:18 CreatorKou 阅读(377) 评论(0) 推荐(0) 编辑

2019年9月29日

Http-Netty-Rpc-Service系统改造:不要在springboot的启动主线程中阻塞,nettyserver的postconstruct注解的init方法中不要写future.channel().closeFuture().sync();

摘要: 常规的demo级别的netty服务端的代码写法是这样的: 在这里面future.channel().closeFuture().sync();这个语句的主要目的是,方便测试,方便写一个非springboot的demo,比如一个简单地junit test方法,closeFuture().sync()可 阅读全文

posted @ 2019-09-29 11:34 CreatorKou 阅读(4878) 评论(0) 推荐(0) 编辑

2019年9月27日

maven打包插件的区别(jar,assembly, shade)

摘要: https://medium.com/@randilfernando/when-to-use-maven-jar-maven-assembly-or-maven-shade-ffc3f76ba7a6 阅读全文

posted @ 2019-09-27 09:12 CreatorKou 阅读(1002) 评论(0) 推荐(0) 编辑

2019年9月24日

非对称密码学,摘要,加密,数字签名,数字证书

摘要: 非对称密码学,摘要,加密,数字签名,数字证书,https://www.jianshu.com/p/4932cb1499bf https://www.cnblogs.com/lovelinux199075/p/9022589.html https数字证书被篡改?CA的权威性,申请认证具有门槛https 阅读全文

posted @ 2019-09-24 11:34 CreatorKou 阅读(188) 评论(0) 推荐(0) 编辑

2019年9月20日

jmeter压力测试netty-rpc-service

摘要: 只发送消息,不等待结果,线程太快,有些channel还没有写完数据,就stop了,所以本来设置了1000个samples,结果只有337次发送到服务端 jmeter的threadgroup中的每个thread在启动时,拿到public class TestDemo extends AbstractJ 阅读全文

posted @ 2019-09-20 23:43 CreatorKou 阅读(2198) 评论(1) 推荐(0) 编辑

linux修改环境变量的三种方式,全局修改两种,用户范围修改一种

摘要: 全局修改: 方法一: 在/etc/profile文件中添加变量【对所有用户生效(永久的)】 用VI在文件/etc/profile文件中增加变量,该变量将会对Linux下所有用户有效,并且是“永久的”。 要让刚才的修改马上生效,需要执行以下代码 # source /etc/profile 方法二: 在 阅读全文

posted @ 2019-09-20 14:32 CreatorKou 阅读(2229) 评论(0) 推荐(0) 编辑

jmeter java request需要executable jar需要打包,,javac,jar打包,,maven shade打包,maven assembly打包,全依赖包,可执行包,assembly包太大,maven取消传递依赖exclusions

摘要: jmeter初学,用http request sampler作为sampler,有限制,自己写的tcp c/s代码需要压测,只能再写一个springboot controller + tomcat,在controller中创建客户端,连接服务器,然而这些还需要tomcat dispacher 分派h 阅读全文

posted @ 2019-09-20 11:45 CreatorKou 阅读(355) 评论(0) 推荐(0) 编辑

2019年9月17日

jmeter学习总结

摘要: jmeter5.1.1: 使用jmeter客户端生成jmx后缀的测试脚本,在TestPlan节点下的ThreadGroup,等其他子节点,按照从上到下顺序执行,badboy脚本录制软件没有下载, 添加HttpRequest Defaults设置一些默认的信息,添加一个空的HttpCookieMana 阅读全文

posted @ 2019-09-17 21:04 CreatorKou 阅读(293) 评论(0) 推荐(0) 编辑

2019年9月16日

统计磁盘下所有目录占用空间,排序,(windows/linux)

摘要: https://www.cnblogs.com/0616--ataozhijia/p/6364185.html 在windows系统中,右键打开git-bash,切到d盘,du -sh * 排序(按照字节):du -s * | sort -rn 阅读全文

posted @ 2019-09-16 16:10 CreatorKou 阅读(1299) 评论(0) 推荐(0) 编辑

2019年9月13日

git clone时,提示warning: remote HEAD refers to nonexistent ref, unable to checkout.

摘要: git show-ref 查看.git存储的分支 git checkout [分支名] 定位到某个分支即可 https://blog.csdn.net/whu_zhangmin/article/details/12040493 阅读全文

posted @ 2019-09-13 16:05 CreatorKou 阅读(2937) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 22 下一页

导航