上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页
摘要: Hash常用操作 hset key field value 存储一个哈希表key的键值 hsetnx key field value 存储一个不存在的哈希表key的键值 hmset key field1 value1 field2 value2 ... 在一个哈希表key中存储多个键值对 hget 阅读全文
posted @ 2022-01-28 10:55 阿灿呀 阅读(67) 评论(0) 推荐(0)
摘要: String 常用命令 set key value set key value ex seconds nx mset key1 value1 key2 value2 ... 批量设置key get key mget key1 key2 ... 批量获取key del key 删除一个key expi 阅读全文
posted @ 2022-01-28 10:54 阿灿呀 阅读(138) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lxlin/p/9635350.html 阅读全文
posted @ 2022-01-16 15:11 阿灿呀 阅读(48) 评论(0) 推荐(0)
摘要: js的六种数据类型: String , Number , Boolean , Null , Undefined , Object /n 换行, /t制表符 console.log(typeof a);//看a的类型 NaN not a number,用typeof检查NaN返回的也是Number J 阅读全文
posted @ 2021-12-26 23:16 阿灿呀 阅读(34) 评论(0) 推荐(0)
摘要: 类加载的大致过程 windows系统下java.exe调用底层的jvm.dll文件创建Java虚拟机(C++实现) 创建一个引导类加载器实例(C++实现) 引导类加载器加载sun.misc.Launcher,Launcher负责加载其他类加载器 sun.misc.Launcher.getLaunch 阅读全文
posted @ 2021-08-28 22:09 阿灿呀 阅读(24) 评论(0) 推荐(0)
摘要: springboot自动配置原理加载主流程 @SpringBootApplication @Target(ElementType.TYPE) //注解可以标在哪里 @Retention(RetentionPolicy.RUNTIME) // 注解的有效范围 @Documented // 生成doc 阅读全文
posted @ 2021-04-19 00:34 阿灿呀 阅读(143) 评论(0) 推荐(0)
摘要: 类型顺序 优先级 低到高 形成互补 <include>**/application*.yml</include> 1 <include>**/application*.yaml</include> 2 <include>**/application*.properties</include> 3 位 阅读全文
posted @ 2021-04-17 11:18 阿灿呀 阅读(123) 评论(0) 推荐(0)
摘要: springboot的配置文件不支持SPEL表达式 springboot的配置文件支持占位符和随机数 #占位符 user.username=黄汉山 user.hobbies=${user.username}打篮球 #随机数 my.secret=${random.value} my.number=${ 阅读全文
posted @ 2021-04-17 11:17 阿灿呀 阅读(475) 评论(0) 推荐(0)
摘要: @ConfigurationProperties(prefix = "user") 支持jsr-303数据检验 添加注解@Validated <!--jsr-303数据检验依赖--> <dependency> <groupId>org.springframework.boot</groupId> < 阅读全文
posted @ 2021-04-17 11:15 阿灿呀 阅读(288) 评论(0) 推荐(0)
摘要: Springboot Springboot是基于spring开发的,不仅继承了spring框架原有的优秀特性,而且进一步的简化了spring应用的整个搭建和开发过程. 约定大于配置 集成了大量的第三方框架,开箱即用 J2EE开发的一站式解决方案 SpringCloud带动了SpringBoot,Sp 阅读全文
posted @ 2021-04-08 01:36 阿灿呀 阅读(87) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 14 下一页