上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页

2020年4月16日

使用SpringSecurity保护webapplication

摘要: 直接查看官方demo: move to:https://spring.io/guides/gs/securing-web/ 阅读全文

posted @ 2020-04-16 15:12 滚动的蛋 阅读(158) 评论(0) 推荐(0) 编辑

2020年4月13日

JavaVisualVM 监控

摘要: 1、JMX方式 https://docs.oracle.com/javase/8/docs/technotes/guides/visualvm/jmx_connections.html 2、JStad方式 https://docs.oracle.com/javase/8/docs/technotes 阅读全文

posted @ 2020-04-13 15:34 滚动的蛋 阅读(149) 评论(0) 推荐(0) 编辑

2020年4月9日

IDEA debug 模式编译问题

摘要: 1、开启debug 问题: 发现并没有实时编译 2、解决 直接鼠标右键,点击 compile and relaod file触发编译,查看效果,注意这个选项只有在开启debug模式才会出现。 阅读全文

posted @ 2020-04-09 10:26 滚动的蛋 阅读(1673) 评论(0) 推荐(0) 编辑

2020年4月8日

Maven项目,公共模块抽取,使用dependence标签引用

摘要: 1、新建一个maven项目 项目commos-tool 2、在其它maven模块项目中引用公共项目 <dependency> <groupId>com.irobotzz.commons</groupId> <artifactId>commons-tool</artifactId> <version> 阅读全文

posted @ 2020-04-08 14:55 滚动的蛋 阅读(1394) 评论(0) 推荐(0) 编辑

ArrayList和LinkedList区别及使用场景

摘要: 1. LinkedList和ArrayList的差别主要来自于Array和LinkedList数据结构的不同。ArrayList是基于数组实现的,LinkedList是基于双链表实现的。另外LinkedList类不仅是List接口的实现类,可以根据索引来随机访问集合中的元素,除此之外,LinkedL 阅读全文

posted @ 2020-04-08 10:13 滚动的蛋 阅读(2491) 评论(0) 推荐(0) 编辑

Tomcat 设置线程池

摘要: 参考官方网站 https://tomcat.apache.org/tomcat-9.0-doc/config/index.html 1、在server.xml中添加配置 在service标签内添加 <Executor name="tomcatThreadPool" namePrefix="tomca 阅读全文

posted @ 2020-04-08 10:07 滚动的蛋 阅读(646) 评论(0) 推荐(0) 编辑

MYSQL 知识

摘要: 1、MYSQL 引擎和存取机制 在执行select/update语句时都发生了什么? 2、索引 索引的本质是什么? B+tree 3、事物和锁 问题: 脏读:读到其它事物未提交的数据 不可重复读:读到其它事物提交的数据 update/delete 幻读:读取到其它事物已经提交的数据 insert 隔 阅读全文

posted @ 2020-04-08 09:49 滚动的蛋 阅读(103) 评论(0) 推荐(0) 编辑

2020年4月7日

Jmeter 压力测试工具

摘要: 1、查看官网 https://jmeter.apache.org/ 阅读全文

posted @ 2020-04-07 17:31 滚动的蛋 阅读(152) 评论(0) 推荐(0) 编辑

JVM 调优工具

摘要: 1、以查看博客 https://www.cnblogs.com/ityouknow/p/6437037.html 2、使用 java VisualVM 重点关注GC: MinorGC、YoungGC、FullGC 阅读全文

posted @ 2020-04-07 17:23 滚动的蛋 阅读(117) 评论(0) 推荐(0) 编辑

RabbitMQ 的基本使用指南

摘要: 请直接查看官方文档: https://www.rabbitmq.com/getstarted.html 阅读全文

posted @ 2020-04-07 12:10 滚动的蛋 阅读(167) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 22 下一页

导航