91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

springboot集成jedis使用怎么實現

小億
86
2023-11-22 17:48:22
欄目: 編程語言

要在Spring Boot中集成Jedis,可以按照以下步驟進行實現:

  1. 添加Jedis依賴:在pom.xml文件中添加Jedis的依賴。
<dependency>
    <groupId>redis.clients</groupId>
    <artifactId>jedis</artifactId>
    <version>3.7.0</version>
</dependency>
  1. 配置Redis連接信息:在application.propertiesapplication.yml文件中配置Redis的連接信息,如Redis的主機名、端口號、密碼等。
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
  1. 創建Redis配置類:創建一個Redis的配置類,用于配置Redis連接池和Jedis連接工廠。
@Configuration
public class RedisConfig {

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

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

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

    @Bean
    public JedisConnectionFactory jedisConnectionFactory() {
        RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration();
        configuration.setHostName(host);
        configuration.setPort(port);
        configuration.setPassword(password);

        JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory(configuration);
        return jedisConnectionFactory;
    }

    @Bean
    public RedisTemplate<String, Object> redisTemplate() {
        RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
        redisTemplate.setConnectionFactory(jedisConnectionFactory());
        redisTemplate.setKeySerializer(new StringRedisSerializer());
        redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
        return redisTemplate;
    }

}
  1. 使用RedisTemplate操作Redis:在需要使用Redis的地方,通過@Autowired注入RedisTemplate,并使用其提供的方法來操作Redis。
@Service
public class RedisService {

    @Autowired
    private RedisTemplate<String, Object> redisTemplate;

    public void set(String key, Object value) {
        redisTemplate.opsForValue().set(key, value);
    }

    public Object get(String key) {
        return redisTemplate.opsForValue().get(key);
    }

    public void delete(String key) {
        redisTemplate.delete(key);
    }

}

以上就是在Spring Boot中集成Jedis的簡單實現方式。通過配置Redis連接信息和使用RedisTemplate來操作Redis,可以方便地進行Redis的讀寫操作。

0
依兰县| 怀柔区| 盐边县| 清流县| 博兴县| 家居| 那曲县| 北流市| 顺昌县| 鸡东县| 汉中市| 清丰县| 独山县| 鞍山市| 西乡县| 勃利县| 徐闻县| 中阳县| 太湖县| 泾阳县| 石家庄市| 崇义县| 孟津县| 西盟| 甘泉县| 泾阳县| 松潘县| 渝北区| 河池市| 德昌县| 远安县| 当阳市| 陈巴尔虎旗| 扬州市| 东光县| 大石桥市| 温宿县| 东乡族自治县| 滦南县| 德令哈市| 凤山县|