当前位置:   article > 正文

SpringBoot学习-(二十二)SpringBoot整合Redis(使用Jedis)_spring boot redis 和jedis

spring boot redis 和jedis

基本步骤:

  • 添加pom文件依赖
  • 创建redis配置文件
  • 创建java配置文件
  • 项目中应用

添加pom文件依赖

<!-- 操作redis -->
<dependency>
	<groupId>redis.clients</groupId>
	<artifactId>jedis</artifactId>
</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5

创建redis配置文件

在resources目录下创建redis.properties文件

spring.redis.host=127.0.0.1
spring.redis.port=6379
  • 1
  • 2

创建java配置文件

package com.ahut.config;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;

import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

/**
 * 
 * @ClassName: RedisConfig
 * @Description: redis配置
 * @author cheng
 * @date 2018年3月7日 上午11:53:11
 */
@Configuration
@PropertySource(value = { "classpath:redis.properties" })
public class RedisConfig {

	/**
	 * 日志管理
	 */
	private Logger log = LoggerFactory.getLogger(RedisConfig.class);

	@Value("${spring.redis.host}")
	private String host;

	@Value("${spring.redis.port}")
	private int port;

	/**
	 * 
	 * @Title: getJedisPool
	 * @Description: 获取jedisPool
	 * @return
	 */
	@Bean
	public JedisPool getJedisPool() {
		log.info("==>初始化jedis连接池");
		JedisPoolConfig config = new JedisPoolConfig();
		JedisPool pool = new JedisPool(config, host, port);
		return pool;
	}
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48

项目中应用

/**
* jedis
*/
@Autowired
private JedisPool jedisPool;

代码获取jedis:
Jedis jedis = jedisPool.getResource();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/160058
推荐阅读
相关标签
  

闽ICP备14008679号