spring boot 自学笔记(四) Redis集成—Jedis
上一篇笔记Reddis集成,操作Redis使用的是RedisTemplate,但实际中还是有一大部分人习惯使用JedisPool和Jedis来操作Redis, 下面使用Jedis集成示例。
修改RedisConfig类如下:
- package com.vic.config;
- import org.apache.log4j.Logger;
- import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
- import org.springframework.boot.context.properties.ConfigurationProperties;
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import redis.clients.jedis.JedisPool;
- import redis.clients.jedis.JedisPoolConfig;
- /**
- *
- * @author vic
- * @desc redis config bean
- *
- */
- @Configuration
- @EnableAutoConfiguration
- @ConfigurationProperties(prefix = "spring.redis", locations = "classpath:application.properties")
- public class RedisConfig {
- private static Logger logger = Logger.getLogger(RedisConfig.class);
- private String hostName;
- private int port;
- private String password;
- private int timeout;
- @Bean
- public JedisPoolConfig getRedisConfig(){
- JedisPoolConfig config = new JedisPoolConfig();
- return config;
- }
- @Bean
- public JedisPool getJedisPool(){
- JedisPoolConfig config = getRedisConfig();
- JedisPool pool = new JedisPool(config,hostName,port,timeout,password);
- logger.info("init JredisPool ...");
- return pool;
- }
- public String getHostName() {
- return hostName;
- }
- public void setHostName(String hostName) {
- this.hostName = hostName;
- }
- public int getPort() {
- return port;
- }
- public void setPort(int port) {
- this.port = port;
- }
- public String getPassword() {
- return password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- public int getTimeout() {
- return timeout;
- }
- public void setTimeout(int timeout) {
- this.timeout = timeout;
- }
- }
因为JedisPool实例化对象,是将host,password等参数通过构造传入,所以在这里将整个RedisConfig定义为一个配置类,定义host,password等配置属性,通过spring boot属性文件自动注入。
接下来看看Service中如何使用:
修改IRedisService接口:
- /**
- *
- * @author vic
- * @desc redis service
- */
- public interface IRedisService {
- public Jedis getResource();
- public void returnResource(Jedis jedis);
- public void set(String key, String value);
- public String get(String key);
- }
RedisService实现类代码:
- package com.vic.service.impl;
- import org.apache.log4j.Logger;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Service;
- import com.vic.service.IRedisService;
- import redis.clients.jedis.Jedis;
- import redis.clients.jedis.JedisPool;
- /**
- *
- * @author vic
- * @desc resdis service
- *
- */
- @Service
- public class RedisServiceImpl implements IRedisService {
- private static Logger logger = Logger.getLogger(RedisServiceImpl.class);
- @Autowired
- private JedisPool jedisPool;
- @Override
- public Jedis getResource() {
- return jedisPool.getResource();
- }
- @SuppressWarnings("deprecation")
- @Override
- public void returnResource(Jedis jedis) {
- if(jedis != null){
- jedisPool.returnResourceObject(jedis);
- }
- }
- @Override
- public void set(String key, String value) {
- Jedis jedis=null;
- try{
- jedis = getResource();
- jedis.set(key, value);
- logger.info("Redis set success - " + key + ", value:" + value);
- } catch (Exception e) {
- e.printStackTrace();
- logger.error("Redis set error: "+ e.getMessage() +" - " + key + ", value:" + value);
- }finally{
- returnResource(jedis);
- }
- }
- @Override
- public String get(String key) {
- String result = null;
- Jedis jedis=null;
- try{
- jedis = getResource();
- result = jedis.get(key);
- logger.info("Redis get success - " + key + ", value:" + result);
- } catch (Exception e) {
- e.printStackTrace();
- logger.error("Redis set error: "+ e.getMessage() +" - " + key + ", value:" + result);
- }finally{
- returnResource(jedis);
- }
- return result;
- }
- }
JedisPool对象使用自动注入,手动获取Jedis对象进行Redis操作,ExampleController进行测试:
- @RequestMapping("/redis/set")
- public ResponseModal redisSet(@RequestParam("value")String value){
- redisService.set("name", value);
- return new ResponseModal(200, true, "success", null);
- }
- @RequestMapping("/redis/get")
- public ResponseModal redisGet(){
- String name = redisService.get("name");
- return new ResponseModal(200, true,"success",name);
- }
测试URL:http://localhost:8080/redis/set?value=vic 响应结果:
{"code":200,"success":true,"message":"success","response":null}
测试URL:http://localhost:8080/redis/get 响应结果:
{"code":200,"success":true,"message":"success","response":"vic"}
spring boot 自学笔记(四) Redis集成—Jedis的更多相关文章
- Spring Boot(十一)Redis集成从Docker安装到分布式Session共享
一.简介 Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API,Redis也是技术领域使用最为广泛的存储中间件,它是 ...
- Spring Boot 学习笔记--整合Redis
1.新建Spring Boot项目 添加spring-boot-starter-data-redis依赖 <dependency> <groupId>org.springfra ...
- Spring Boot 2.x 整合 Redis最佳实践
一.前言 在前面的几篇文章中简单的总结了一下Redis相关的知识.本章主要讲解一下 Spring Boot 2.0 整合 Redis.Jedis 和 Lettuce 是 Java 操作 Redis 的 ...
- Spring Boot 学习笔记(六) 整合 RESTful 参数传递
Spring Boot 学习笔记 源码地址 Spring Boot 学习笔记(一) hello world Spring Boot 学习笔记(二) 整合 log4j2 Spring Boot 学习笔记 ...
- spring boot / cloud (十四) 微服务间远程服务调用的认证和鉴权的思考和设计,以及restFul风格的url匹配拦截方法
spring boot / cloud (十四) 微服务间远程服务调用的认证和鉴权的思考和设计,以及restFul风格的url匹配拦截方法 前言 本篇接着<spring boot / cloud ...
- Spring Boot 2.0 图文教程 | 集成邮件发送功能
文章首发自个人微信公众号: 小哈学Java 个人网站: https://www.exception.site/springboot/spring-boots-send-mail 大家好,后续会间断地奉 ...
- Spring Boot 2.x整合Redis
最近在学习Spring Boot 2.x整合Redis,在这里和大家分享一下,希望对大家有帮助. Redis是什么 Redis 是开源免费高性能的key-value数据库.有以下的优势(源于Redis ...
- Spring Boot 2.X 如何快速集成单元测试?
本文将详细介绍下使用Spring Boot 2.X 集成单元测试,对API(Controller)测试的过程. 一.实现原理 使用MockMvc发起请求,然后执行API中相应的代码,在执行的过程中使m ...
- Spring Boot学习笔记2——基本使用之最佳实践[z]
前言 在上一篇文章Spring Boot 学习笔记1——初体验之3分钟启动你的Web应用已经对Spring Boot的基本体系与基本使用进行了学习,本文主要目的是更加进一步的来说明对于Spring B ...
随机推荐
- C# 自定义文件格式并即时刷新注册表 非关闭explorer
转自:http://blog.csdn.net/zhangtirui/article/details/4309492 最近公司在做一个项目 用到关于自定义格式的文件,但在注册表图标更改后 文件图标 ...
- Python学习笔记014——生成器Generator
1 生成器定义 在Python中,一边循环一边计算的机制,称之为生成器(generator). 生成器是一个迭代器. 含有yield语句的函数是生成器函数,该函数被调用时返回一个生成器对象(yield ...
- 于C#控制台传递参数和接收参数
前言: 写了这么久程序,今天才知道的一个基础知识点,就是程序入口 static void Main(string[] args) 里的args参数是什么意思 ?惭愧... 需求: 点击一个button ...
- android 屏幕适配问题
转自http://blog.sina.com.cn/s/blog_74c22b210100tn3o.html 如何将一个应用程序适配在不同的手机上,虽然这不算是一个技术问题,但是对于刚刚做屏幕的开发人 ...
- android检测网络连接状态示例讲解
网络的时候,并不是每次都能连接到网络,因此在程序启动中需要对网络的状态进行判断,如果没有网络则提醒用户进行设置 Android连接首先,要判断网络状态,需要有相应的权限,下面为权限代码(Andro ...
- 进程间通信机制(管道、信号、共享内存/信号量/消息队列)、线程间通信机制(互斥锁、条件变量、posix匿名信号量)
注:本分类下文章大多整理自<深入分析linux内核源代码>一书,另有参考其他一些资料如<linux内核完全剖析>.<linux c 编程一站式学习>等,只是为了更好 ...
- linux程序设计——套接字选项(第十五章)
如今能够改进客户程序,使它能够连接到不论什么有名字的主机,这次不是连接到演示样例server,而是连接到一个标准服务,这样就能够演示port号的提取操作了. 大多数UNIX和一些linux系统都有一项 ...
- lua学习笔记13:协程具体解释和举例
一.coroutine.create创建协程 參数是协程的主函数,返回一个thread对象 co = coroutine.create(function() print("coroutine ...
- 如何发布Node模块到NPM社区
“学骑自行车最快的方式就是先骑上去” 一.安装node和npm 1.一种是通过编译node源文件安装node(注意:需要Python 2.6或2.7已经安装) $ wget http://nodejs ...
- Socket tips: 同意socket发送UDP Broadcast
假设创建一个UDP Socket: socketHandle = socket(serverAddr->ai_family, serverAddr->ai_socktype, server ...