spring boot 自学笔记(四) Redis集成—Jedis

时间:2024-12-25 23:33:02

上一篇笔记Reddis集成,操作Redis使用的是RedisTemplate,但实际中还是有一大部分人习惯使用JedisPool和Jedis来操作Redis, 下面使用Jedis集成示例。

修改RedisConfig类如下:

  1. package com.vic.config;
  2. import org.apache.log4j.Logger;
  3. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  4. import org.springframework.boot.context.properties.ConfigurationProperties;
  5. import org.springframework.context.annotation.Bean;
  6. import org.springframework.context.annotation.Configuration;
  7. import redis.clients.jedis.JedisPool;
  8. import redis.clients.jedis.JedisPoolConfig;
  9. /**
  10. *
  11. * @author vic
  12. * @desc redis config bean
  13. *
  14. */
  15. @Configuration
  16. @EnableAutoConfiguration
  17. @ConfigurationProperties(prefix = "spring.redis", locations = "classpath:application.properties")
  18. public class RedisConfig {
  19. private static Logger logger = Logger.getLogger(RedisConfig.class);
  20. private String hostName;
  21. private int port;
  22. private String password;
  23. private int timeout;
  24. @Bean
  25. public JedisPoolConfig getRedisConfig(){
  26. JedisPoolConfig config = new JedisPoolConfig();
  27. return config;
  28. }
  29. @Bean
  30. public JedisPool getJedisPool(){
  31. JedisPoolConfig config = getRedisConfig();
  32. JedisPool pool = new JedisPool(config,hostName,port,timeout,password);
  33. logger.info("init JredisPool ...");
  34. return pool;
  35. }
  36. public String getHostName() {
  37. return hostName;
  38. }
  39. public void setHostName(String hostName) {
  40. this.hostName = hostName;
  41. }
  42. public int getPort() {
  43. return port;
  44. }
  45. public void setPort(int port) {
  46. this.port = port;
  47. }
  48. public String getPassword() {
  49. return password;
  50. }
  51. public void setPassword(String password) {
  52. this.password = password;
  53. }
  54. public int getTimeout() {
  55. return timeout;
  56. }
  57. public void setTimeout(int timeout) {
  58. this.timeout = timeout;
  59. }
  60. }

因为JedisPool实例化对象,是将host,password等参数通过构造传入,所以在这里将整个RedisConfig定义为一个配置类,定义host,password等配置属性,通过spring boot属性文件自动注入。

接下来看看Service中如何使用:

修改IRedisService接口:

  1. /**
  2. *
  3. * @author vic
  4. * @desc redis service
  5. */
  6. public interface IRedisService {
  7. public Jedis getResource();
  8. public void returnResource(Jedis jedis);
  9. public void set(String key, String value);
  10. public String get(String key);
  11. }

RedisService实现类代码:

  1. package com.vic.service.impl;
  2. import org.apache.log4j.Logger;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. import com.vic.service.IRedisService;
  6. import redis.clients.jedis.Jedis;
  7. import redis.clients.jedis.JedisPool;
  8. /**
  9. *
  10. * @author vic
  11. * @desc resdis service
  12. *
  13. */
  14. @Service
  15. public class RedisServiceImpl implements IRedisService {
  16. private static Logger logger = Logger.getLogger(RedisServiceImpl.class);
  17. @Autowired
  18. private JedisPool jedisPool;
  19. @Override
  20. public Jedis getResource() {
  21. return jedisPool.getResource();
  22. }
  23. @SuppressWarnings("deprecation")
  24. @Override
  25. public void returnResource(Jedis jedis) {
  26. if(jedis != null){
  27. jedisPool.returnResourceObject(jedis);
  28. }
  29. }
  30. @Override
  31. public void set(String key, String value) {
  32. Jedis jedis=null;
  33. try{
  34. jedis = getResource();
  35. jedis.set(key, value);
  36. logger.info("Redis set success - " + key + ", value:" + value);
  37. } catch (Exception e) {
  38. e.printStackTrace();
  39. logger.error("Redis set error: "+ e.getMessage() +" - " + key + ", value:" + value);
  40. }finally{
  41. returnResource(jedis);
  42. }
  43. }
  44. @Override
  45. public String get(String key) {
  46. String result = null;
  47. Jedis jedis=null;
  48. try{
  49. jedis = getResource();
  50. result = jedis.get(key);
  51. logger.info("Redis get success - " + key + ", value:" + result);
  52. } catch (Exception e) {
  53. e.printStackTrace();
  54. logger.error("Redis set error: "+ e.getMessage() +" - " + key + ", value:" + result);
  55. }finally{
  56. returnResource(jedis);
  57. }
  58. return result;
  59. }
  60. }

JedisPool对象使用自动注入,手动获取Jedis对象进行Redis操作,ExampleController进行测试:

  1. @RequestMapping("/redis/set")
  2. public ResponseModal redisSet(@RequestParam("value")String value){
  3. redisService.set("name", value);
  4. return new ResponseModal(200, true, "success", null);
  5. }
  6. @RequestMapping("/redis/get")
  7. public ResponseModal redisGet(){
  8. String name = redisService.get("name");
  9. return new ResponseModal(200, true,"success",name);
  10. }

测试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"}

点击下载示例