文章目录 一.说明 1.1 Redis 客户端说明 1.2 Redis可视化软件 1.3 项目结构说明 1.3 依赖说明 二.spring 整合 jedis 2.1 新建基本配置文件和其映射类 2.2 单机配置 2.3 集群配置 2.4 单机版本测试用例 2.5 集群版本测试用例 三.spring 整合 redisson 2.1 单机配置 2.2 集群配置 2.3 存储基本类型测试用例 2.4 存储实体对象测试用例 附:Redis的数据结构和操作命令 源码Gitub地址:https://gith…
文章目录 一.说明 1.1 Redis 客户端说明 1.2 Redis可视化软件 1.3 项目结构说明 1.3 依赖说明 二.spring 整合 jedis 2.1 新建基本配置文件 2.2 单机配置 2.3 集群配置 2.4 单机版本测试用例 2.5 集群版本测试用例 三.spring 整合 redisson 2.1 单机配置 2.2 集群配置 2.3 存储基本类型测试用例 2.4 存储实体对象测试用例 附:Redis的数据结构和操作命令 源码Gitub地址:https://github.co…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 本用例关于rabbitmq的整合提供简单消息发送和对象消费发送两种情况下的sample. rabbitBaseAnnotation.java中声明了topic类型的交换机.持久化队列.及其绑定关系,用于测试说明topic交换机路由键的绑定规则. rabbitObjectAnnotation.java中声明了direct类型的交换机,持久化队…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 本用例关于rabbitmq的整合提供简单消息发送和对象消费发送两种情况下的sample. rabbitBaseAnnotation.java中声明了topic类型的交换机.持久化队列.及其绑定关系,用于测试说明topic交换机路由键的绑定规则. rabbitObjectAnnotation.java中声明了direct类型的交换机,持久化队…
文章目录 一.说明 1.1 XMemcached客户端说明 1.2 项目结构说明 1.3 依赖说明 二.spring 整合 memcached 2.1 单机配置 2.2 集群配置 2.3 存储基本类型测试用例 2.5 存储实体对象测试用例 附:memcached 基本命令 源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 XMemcached客户端说明 XMemcached是基于java nio的mem…
文章目录 一.说明 1.1 XMemcached客户端说明 1.2 项目结构说明 1.3 依赖说明 二.spring 整合 memcached 2.1 单机配置 2.2 集群配置 2.3 存储基本类型测试用例 2.5 存储实体对象测试用例 附:memcached 基本命令 源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 XMemcached客户端说明 XMemcached是基于java nio的mem…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 配置文件位于com.heibaiying.config下,项目以单元测试的方式进行测试. 1.2 依赖说明 除了spring的基本依赖外,需要导入mongodb整合依赖包 <!--spring mongodb 整合依赖--> <dependency> <groupId>org.springframework.dat…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 配置文件位于resources下,项目以单元测试的方式进行测试. 1.2 依赖说明 除了spring的基本依赖外,需要导入mongodb整合依赖包 <!--spring mongodb 整合依赖--> <dependency> <groupId>org.springframework.data</groupI…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 项目模拟一个简单的群聊功能,为区分不同的聊天客户端,登录时候将临时用户名存储在session当中: webconfig 包是基础注解的方式配置web,在spring-base-annotation项目中已经讲解过每个类作用: CustomHander为消息的自定义处理器: CustomHandershakerInterceptor为自定义的…
源码Gitub地址:https://github.com/heibaiying/spring-samples-for-all 一.说明 1.1 项目结构说明 项目模拟一个简单的群聊功能,为区分不同的聊天客户端,登录时候将临时用户名存储在session当中: CustomHander为消息的自定义处理器: CustomHandershakerInterceptor为自定义的 websocket 的握手拦截器: 项目以web的方式构建. 1.2 依赖说明 除了基本的spring 依赖外,还需要导入w…