springboot 配置redis

14 篇文章 0 订阅
12 篇文章 0 订阅

记录一些基础但必须的配置---redis

springboot 中的redis 配置也是十分简单的,直接上代码:

首先,引入jar包文件:

        <!-- redis -->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-redis</artifactId>
			<exclusions>
				<exclusion>
					<groupId>redis.clients</groupId>
					<artifactId>jedis</artifactId>
				</exclusion>
				<exclusion>
					<groupId>io.lettuce</groupId>
					<artifactId>lettuce-core</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>redis.clients</groupId>
			<artifactId>jedis</artifactId>
		</dependency>

然后编写配置类

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.data.redis.RedisProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

@Configuration
public class JedisPoolFactory {

    //自动注入redis配置属性文件
    @Autowired
    private RedisProperties properties;
    @Bean
    public JedisPool getJedisPool(){
        JedisPoolConfig config = new JedisPoolConfig();
        config.setMaxIdle(properties.getJedis().getPool().getMaxIdle());
        config.setMaxTotal(properties.getJedis().getPool().getMaxActive());
        config.setMaxWaitMillis(properties.getJedis().getPool().getMaxWait().toMillis());
        JedisPool pool = new JedisPool(config,properties.getHost(),properties.getPort(),100,properties.getPassword(),properties.getDatabase(),null);
        return pool;
    }
}

查看源码可以看到  RedisProperties 会自动去获取配置文件中以spring.redis开头的数据

然后我们往配置文件中加入参数:

# REDIS (RedisProperties)
# Redis数据库索引(默认为0)
spring.redis.database=2
# Redis服务器地址
spring.redis.host=127.0.0.1
# Redis服务器连接端口
spring.redis.port=6379
# Redis服务器连接密码(默认为空)
spring.redis.password=1234qwer
# 连接池最大连接数(使用负值表示没有限制)
spring.redis.jedis.pool.max-active=8
# 连接池最大阻塞等待时间(使用负值表示没有限制)
spring.redis.jedis.pool.max-wait=-1
# 连接池中的最大空闲连接
spring.redis.jedis.pool.max-idle=8
# 连接池中的最小空闲连接
spring.redis.jedis.pool.min-idle=0
# 连接超时时间(毫秒)
spring.redis.timeout=0

然后再application.java  类上加上扫码bean的注解

简单的写个方法测试一下:

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.stereotype.Component;

import com.edgecdj.utils.UUIDUtils;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;

/**
 * 测试redis
 * @author cdj
 * @date 2018年8月7日 上午10:04:19
 */
@Component
public class RedistestUtil {
	
	@Autowired
	JedisPool jedisPool;
	@Autowired
	StringRedisTemplate stringRedisTemplate;
	
	public String saveJedis (String val) {
		Jedis jedis = jedisPool.getResource();
		String uuid = UUIDUtils.getUUID();
		String setex = jedis.setex(uuid, 20000, val);
		return setex;
	}
	public String saveJedis2 (String val) {
		stringRedisTemplate.opsForValue().set(val, val);
		String xx = stringRedisTemplate.opsForValue().get(val);
		return xx;
	}
}

简单的检测一下就好了,配置还是蛮简单的,应用就很有学问了。

可以为你提供有关springboot配置redis的相关信息,你可以参考以下步骤: 1.首先,在pom.xml文件中添加redis依赖 ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> ``` 2.在application.properties文件中配置redis的连接信息 ```properties spring.redis.host=localhost spring.redis.port=6379 spring.redis.password= spring.redis.database=0 ``` 其中,host和port是redis服务器的地址和端口,password是redis密码(如果有设置的话),database是redis数据库的编号。 3.在java代码中使用redis 添加一个RedisConfig类,用来配置redisTemplate ```java @Configuration public class RedisConfig { @Bean public RedisTemplate<Object, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) { RedisTemplate<Object, Object> redisTemplate = new RedisTemplate<>(); redisTemplate.setConnectionFactory(redisConnectionFactory); //设置序列化方式 redisTemplate.setKeySerializer(new StringRedisSerializer()); redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer()); redisTemplate.afterPropertiesSet(); return redisTemplate; } } ``` 在其他类中使用redisTemplate进行redis操作 ```java @Autowired private RedisTemplate<Object, Object> redisTemplate; public void set(String key, Object value) { redisTemplate.opsForValue().set(key, value); } public Object get(String key) { return redisTemplate.opsForValue().get(key); } ``` 以上就是关于如何使用springboot配置redis的简单介绍,希望对你有所帮助。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值