上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: newman命令: newman run e:\mytest.postman_collection.json --iteration-data e:\account.json --globals e:\postman_globals.json --environment e:\dev_yx.post 阅读全文
posted @ 2019-12-23 16:34 云晴 阅读(396) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-12-04 08:36 云晴 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 首先maven依赖,别用最新版,用这版,因为新版jedisConnectionFactory的配置过时了,新版怎么配置我也没搞清楚 然后配置applicationContext-redis.xml 在applicationContext.xml中引入上面的xml 阅读全文
posted @ 2019-09-28 09:33 云晴 阅读(1012) 评论(0) 推荐(0) 编辑
摘要: Reference:https://blog.csdn.net/z15732621582/article/details/78767835 BeanUtils提供对Java反射和自省API的包装。其主要目的是利用反射机制对JavaBean的属性进行处理。我们知道,一个JavaBean通常包含了大量的 阅读全文
posted @ 2019-09-07 13:44 云晴 阅读(1690) 评论(0) 推荐(0) 编辑
摘要: 1.点击这个 2.取消勾选这个 3.添加-Dserver.port=8080 如果需要切换profile,从default→dev,则可以这样配:-Dserver.port=8080 -Dspring.profiles.active=dev,假设这里的dev为开发环境 不需要在application 阅读全文
posted @ 2019-08-24 21:48 云晴 阅读(4251) 评论(0) 推荐(0) 编辑
摘要: 1 1:集合 2 Collection(单列集合) 3 List(有序,可重复) 4 ArrayList 5 底层数据结构是数组,查询快,增删慢 6 线程不安全,效率高 7 Vector 8 底层数... 阅读全文
posted @ 2019-04-12 11:10 云晴 阅读(214) 评论(0) 推荐(0) 编辑
摘要: import java.io.Serializable; public class JsonResult implements Serializable{ private static final long serialVersionUID = -4800793124936904868L; public static final int SUCCESS=200; p... 阅读全文
posted @ 2019-04-11 16:29 云晴 阅读(4796) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-04-04 13:47 云晴 阅读(11) 评论(0) 推荐(0) 编辑
摘要: Spring Boot启动程序通常使用Tomcat作为默认的嵌入式服务器。如果需要更改 - 您可以排除Tomcat依赖项并改为包含Jetty或Undertow: jetty配置: undertow配置: 9.在引导应用程序中配置Jetty或Undertow Spring Boot启动程序通常使用To 阅读全文
posted @ 2019-03-28 15:56 云晴 阅读(7767) 评论(0) 推荐(2) 编辑
摘要: 一、下载windows版本的Redis 去官网找了很久,发现原来在官网上可以下载的windows版本的,现在官网以及没有下载地址,只能在github上下载,官网只提供linux版本的下载 官网下载地址:http://redis.io/download github下载地址:https://githu 阅读全文
posted @ 2019-03-27 10:46 云晴 阅读(118310) 评论(1) 推荐(15) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页