上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 74 下一页
摘要: 分类专栏: java学习 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。 本文链接:https://blog.csdn.net/firearrow66/article/details/78858118 Hashset 和 ListHashSe 阅读全文
posted @ 2019-11-28 14:38 kelelipeng 阅读(1165) 评论(0) 推荐(0) 编辑
摘要: 本文链接:https://blog.csdn.net/hongxingxiaonan/article/details/49202613 public class Person<T> { } import java.lang.reflect.ParameterizedType; import java 阅读全文
posted @ 2019-11-28 13:44 kelelipeng 阅读(12849) 评论(0) 推荐(1) 编辑
摘要: Lamda的基本使用 https://www.cnblogs.com/htyj/p/10133883.html https://segmentfault.com/q/1010000011200292 Java 8 lambda Collectors优雅的使用方式-超详细 https://blog.c 阅读全文
posted @ 2019-11-28 13:21 kelelipeng 阅读(521) 评论(0) 推荐(0) 编辑
摘要: http://baijiahao.baidu.com/s?id=1638844080997170869&wfr=spider&for=pc Vector线程安全,ArrayList非线程安全 java的架构师技术栈 发布时间:07-1217:25科技达人,优质原创作者 这篇文章开始介绍Vector。 阅读全文
posted @ 2019-11-28 10:09 kelelipeng 阅读(628) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/msymm/p/9873551.html 1 vector介绍 Vector简介 Vector 是矢量队列,它是JDK1.0版本添加的类。继承于AbstractList,实现了List, RandomAccess, Cloneable这些接口。Vect 阅读全文
posted @ 2019-11-28 10:08 kelelipeng 阅读(1663) 评论(0) 推荐(0) 编辑
摘要: SpringBoot security关闭验证 springboot2.x security关闭验证https://www.cnblogs.com/guanxiaohe/p/11738057.htmlimport org.springframework.context.annotation.Conf 阅读全文
posted @ 2019-11-27 19:42 kelelipeng 阅读(13697) 评论(0) 推荐(1) 编辑
摘要: BCryptPasswordEncoder 判断密码是否相同 加密 BCryptPasswordEncoder encode = new BCryptPasswordEncoder(); encode.encode(password); 比较 matches(CharSequence rawPass 阅读全文
posted @ 2019-11-27 16:24 kelelipeng 阅读(1879) 评论(0) 推荐(0) 编辑
摘要: A 10分钟了解JSON Web令牌(JWT)https://baijiahao.baidu.com/s?id=1608021814182894637&wfr=spider&for=pc B SpringBoot+SpringSecurity+JWT实RESTfulAPI权限控制 (下载源码可以用) 阅读全文
posted @ 2019-11-27 13:24 kelelipeng 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/kelelipeng/p/11326936.html https://www.cnblogs.com/kelelipeng/p/11326621.html 2019.05.21 11:29:03字数 114阅读 1,455 Accessors翻译是存取 阅读全文
posted @ 2019-11-27 13:22 kelelipeng 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 随机数的产生在一些代码中很常用,也是我们必须要掌握的。而java中产生随机数的方法主要有三种: 第一种:new Random() 第二种:Math.random() 第三种:currentTimeMillis() 第一种需要借助java.util.Random类来产生一个随机数发生器,也是最常用的一 阅读全文
posted @ 2019-11-25 10:02 kelelipeng 阅读(2236) 评论(0) 推荐(0) 编辑
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 74 下一页