- 博客(56)
- 问答 (1)
- 收藏
- 关注
原创 二叉树遍历(前序、中序、后序、层序)java实现
Node数据结构: @Data @AllArgsConstructor public static class TreeNode { private int value; private TreeNode left; private TreeNode right; }前序遍历: public static void dfsPre(TreeNode root) { List<I
2021-12-24 16:35:06
402
原创 postman 配置参数自动签名
后端接口为了避免参数被篡改,有参数签名的校验,为方便使用postman测试接口,可在postman设置自动签名第一步:创建collection第二步:配置全局参数,设置 appKey、appSecret等全局参数第三步:配置脚本,编辑collection,选择Pre-request Scripts,输入脚本var appKey = pm.environment.get("appKey");var appSecret = pm.environment.ge...
2021-10-11 15:46:22
2487
原创 druid连接池配置详解
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close"> <property name="driverClassName" value="${database.driverClassName}"/>...
2019-05-06 15:36:30
2970
转载 自制Https证书并在Spring Boot和Nginx中使用
https://www.cnblogs.com/xinzhao/p/4950689.html
2018-01-04 11:29:38
599
转载 Spring Boot中使用Swagger2构建强大的RESTful API文档
http://www.jianshu.com/p/8033ef83a8ed
2017-12-20 17:17:28
176
转载 ThreadPoolTaskExecutor配置详解
http://itindex.net/detail/51259-spring-%E7%BA%BF%E7%A8%8B%E6%B1%A0-threadpooltaskexecutor
2017-12-14 11:27:27
1737
转载 java中Executor、ExecutorService、ThreadPoolExecutor
http://blog.youkuaiyun.com/linghu_java/article/details/17123057
2017-12-14 10:49:20
210
转载 Java Executor并发框架 RejectedExecutionHandler
http://blog.youkuaiyun.com/pfnie/article/details/52755769
2017-12-14 10:47:24
292
转载 spring Boot redis连接池配置,Spring Session配置
http://blog.youkuaiyun.com/yangliuhbhd/article/details/71515780
2017-12-14 10:34:44
714
转载 经典编程书籍大全
如果有人让你推荐编程技术书,这个列表最合适不过了:https://github.com/jobbole/awesome-programming-books
2017-08-21 17:45:02
304
转载 ubuntu下载地址
ubuntu下载地址:中文官方:http://www.ubuntu.org.cn英文官方:http://www.ubuntu.com官方下载地址:http://releases.ubuntu.com/11.10/http://cdimage.ubuntu.com/releases/11.04/release/网易镜像服务器:h
2017-06-03 15:17:49
948
转载 JavaServer Faces 2.0 can not be installed解决方案
http://www.cnblogs.com/jebeljebel/p/4421098.html
2017-03-06 20:45:16
261
空空如也
项目使用lambda表达式后启动报错,求大神解决
2018-05-24
TA创建的收藏夹 TA关注的收藏夹
TA关注的人