英文:
How to set redis databse number to be used in spring boot
问题
在我的应用程序中,我希望所有的键都进入一个特定的数据库编号。
我查看了Redis文档,发现Redis默认有16个数据库,编号为0-15。
假设我想使用数据库3。
在Java Spring Boot应用程序中,我该如何实现?
英文:
In my application and I want all my keys to go to a specific database number.
I checked Redis documentation and found that Redis has 16 databases by default 0-15.
Let's say I want to use database 3.
How can I do it in java spring-boot application?
答案1
得分: 0
你可以在 application.properties 文件中这样指定:
spring.redis.database=3
在创建 Jedis 连接工厂时,将此数据库设置为 jedisConnectionFactory,如下所示:
@Autowired
private RedisProperties redisProperties;
@Bean
JedisConnectionFactory jedisConnectionFactory() {
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(redisSentinelConfiguration);
jedisConnectionFactory.setDatabase(this.redisProperties.getDatabase());
return jedisConnectionFactory;
}
英文:
You can specify that in the application.properties file like this.
spring.redis.database=3
after this while creating Jedisconnection factory set this databse to jedisconnectionfactory.
@Autowired
private RedisProperties redisProperties;
@Bean
JedisConnectionFactory jedisConnectionFactory() {
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(redisSentinelConfiguration);
jedisConnectionFactory.setDatabase(this.redisProperties.getDatabase());
return jedisConnectionFactory;
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论