随笔 - 31
文章 - 0
评论 - 0
阅读 -
14645
03 2022 档案
Redis数据类型
摘要:1. Redis的存储结构是什么样的? 官网的说明: Redis is not a plain key-value store, it is actually a data structures server, supporting different kinds of values. What t
阅读全文
Spring RedisTemplate源码解读
摘要:RedisTemplate类位于项目spring-data-redis-xxx的包org.springframework.data.redis.core下,是我们在Spring框架下操作Redis数据库的主要入口。但是,RedisTemplate其实并不直接对Redis进行CRUD操作,而是通过以下
阅读全文
类图
摘要:https://www.cnblogs.com/pauljoyce/p/9890680.html PowerDesigner类图的类间关系Generalization (泛化,继承)Association (关联关系)Aggregation (聚合)Composition (组成)Dependenc
阅读全文
Maven常用的打包插件
摘要:<!-- 配置java版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.8</sou
阅读全文