上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 31 下一页
摘要: 地址:https://blog.csdn.net/bajianxiaofendui/article/details/89853855 阅读全文
posted @ 2020-03-19 12:15 双间 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 地址:https://blog.csdn.net/hellozpc/article/details/81436980 阅读全文
posted @ 2020-03-18 15:38 双间 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 第一种、参数 @RequestMapping("/test") @ResponseBody public void saveTest(HttpServletRequest req, HttpServletResponse resp){ } 第二种、注解 @Autowired private Http 阅读全文
posted @ 2020-03-16 15:09 双间 阅读(2848) 评论(0) 推荐(0) 编辑
摘要: 地址:https://blog.csdn.net/u011535541/article/details/83379151 阅读全文
posted @ 2020-03-15 22:29 双间 阅读(199) 评论(0) 推荐(0) 编辑
摘要: HTTPS和HTTP的区别主要如下: 1、https协议需要到ca申请证书,一般免费证书较少,因而需要一定费用。 2、http是超文本传输协议,信息是明文传输,https则是具有安全性的ssl加密传输协议。 3、http和https使用的是完全不同的连接方式,用的端口也不一样,前者是80,后者是44 阅读全文
posted @ 2020-03-12 16:38 双间 阅读(483) 评论(0) 推荐(0) 编辑
摘要: 关于什么是rabbitmq,请看另一篇文: http://www.cnblogs.com/boshen-hzb/p/6840064.html 一、新建maven工程:springboot-rabbitmq 二、引入springboot和rabbitmq的依赖 <project xmlns="http 阅读全文
posted @ 2020-03-09 09:06 双间 阅读(1678) 评论(0) 推荐(0) 编辑
摘要: 地址: https://blog.csdn.net/leq3915/article/details/80460316 行转列:PIVOT 列转行:UNPIVOT 这两个是在oracle11g上面新增的函数。下面举例说明用法。 PIVOT: 学生成绩表,原数据: select class_name, 阅读全文
posted @ 2020-02-23 16:59 双间 阅读(1849) 评论(0) 推荐(0) 编辑
摘要: ①HashMap的工作原理 HashMap基于hashing原理,我们通过put()和get()方法储存和获取对象。当我们将键值对传递给put()方法时,它调用键对象的hashCode()方法来计算hashcode,让后找到bucket位置来储存值对象。当获取对象时,通过键对象的equals()方法 阅读全文
posted @ 2020-02-14 21:43 双间 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 地址:https://blog.csdn.net/hellowordapi/article/details/75763432 在平常的业务系统开发中,我们经常需要设计数据层次关系,如在经典的user-role-permission权限设计中, 需要对权限表的数据设计成一种层次依赖关系,如最顶层的为系 阅读全文
posted @ 2020-02-13 12:03 双间 阅读(888) 评论(0) 推荐(0) 编辑
摘要: 地址:https://blog.csdn.net/u014532901/article/details/78820124 阅读全文
posted @ 2020-02-11 11:55 双间 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 31 下一页