java
good_boys
这个作者很懒,什么都没留下…
展开
-
堆栈信息、GC统计
查看堆栈信息方法:top 或 ps -ef |grep 。。。 查找进程pidtop -H -p 检查进程下线程的资源使用占比jstack 打印该进程下 堆栈的详细信息jstat -gcutil 打印gc的回收情况详细见堆栈:https://blog.csdn.net/weixin_33946020/article/details/85770103gc:http://blog.csdn.net/chaofanwei/article/details/11758395...原创 2021-08-12 15:16:01 · 276 阅读 · 0 评论 -
java开发手册-阿里规范
https://developer.aliyun.com/topic/java2020?utm_content=g_1000113416原创 2021-08-03 14:25:51 · 173 阅读 · 0 评论 -
大附件分片上传、断点续传
相关实现:https://segmentfault.com/a/1190000021945539?utm_source=tag-newesthttps://mp.weixin.qq.com/s/f2Una_4u6xecEyrto47_Fg原创 2021-08-03 11:05:45 · 356 阅读 · 0 评论 -
stateMachine spring有限状态机
引见:https://blog.csdn.net/u012129558/article/details/90519577原创 2021-07-28 21:18:45 · 87 阅读 · 0 评论 -
拦截器的使用WebMvcConfigurer
1介绍WebMvcConfigurer配置类其实是Spring内部的一种配置方式,采用JavaBean的形式来代替传统的xml配置文件形式进行针对框架个性化定制,可以自定义一些Handler,Interceptor,ViewResolver,MessageConverter。基于java-based方式的spring mvc配置,需要创建一个配置类并实现WebMvcConfigurer 接口;在Spring Boot 1.5版本都是靠重写WebMvcConfigurerAdapter的方法来添加自定义拦原创 2021-07-26 16:02:52 · 783 阅读 · 0 评论 -
java如何优雅的使用重试Retryer
给大家介绍一个重试的工具类Guava-retrying<!-- https://mvnrepository.com/artifact/com.github.rholder/guava-retrying --><dependency> <groupId>com.github.rholder</groupId> <artifactId>guava-retrying</artifactId> <versio转载 2021-04-22 08:56:04 · 501 阅读 · 0 评论 -
queryWrapper构造器方法
原创 2021-02-25 14:28:34 · 734 阅读 · 0 评论 -
springboot多数据源配置
pom.xml添加依赖<dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>3.3.1</version></dependency><!--mybatis plus相关--><dependency> <groupId>.原创 2020-10-30 11:30:54 · 278 阅读 · 0 评论