Spring Boot 揭祕與實戰(二) 資料儲存篇 - Redis

樑桂釗發表於2016-12-20

本文講解Spring Boot基礎下,如何整合Redis,編寫資料訪問。
原文地址:Spring Boot 揭祕與實戰(二) 資料儲存篇 - Redis
部落格地址:blog.720ui.com/

環境依賴

修改 POM 檔案,新增 spring-boot-starter-redis 依賴。

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-redis</artifactId>
</dependency>複製程式碼

資料來源

方案一 使用 Spring Boot 預設配置

在 src/main/resources/application.properties 中配置資料來源資訊。

spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.database=1
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
spring.redis.pool.max-idle=500
spring.redis.pool.min-idle=0
spring.redis.timeout=0複製程式碼

方案二 手動建立

在 src/main/resources/config/redis.properties 中配置資料來源資訊。

# redis
redis.host=localhost
redis.port=6379
redis.password=
redis.database=1複製程式碼

通過 Java Config 建立redisTemplate。

@Configuration
@PropertySource("classpath:config/redis.properties")
public class RedisConfig {
    @Autowired
    private Environment env;
    @Bean
    public RedisConnectionFactory redisConnectionFactory() {
        JedisPoolConfig jedisPoolConfig = new JedisPoolConfig();
        JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
        jedisConnectionFactory.setHostName(env.getProperty("redis.host").trim());
        jedisConnectionFactory.setPort(Integer.parseInt(env.getProperty("redis.port").trim()));
        jedisConnectionFactory.setPassword(env.getProperty("redis.password").trim());
        jedisConnectionFactory.setDatabase(Integer.parseInt(env.getProperty("redis.database").trim()));
        jedisConnectionFactory.setUsePool(true);    
        jedisConnectionFactory.setPoolConfig(jedisPoolConfig);
        return jedisConnectionFactory;
    }

    @Bean
    public RedisTemplate<String, String> redisTemplate() {
        RedisTemplate<String, String> redisTemplate = new StringRedisTemplate();
        redisTemplate.setConnectionFactory(redisConnectionFactory());
        redisTemplate.afterPropertiesSet();
        return redisTemplate;
    }
}複製程式碼

使用 redisTemplate 操作

工具類

@Repository
public class RedisBaseDao {

    @Resource(name="redisTemplate")
    protected ValueOperations<String, String> valueOperations;

    public void addValue(String key, String value){
        valueOperations.set(key, value);
    }

    public String getValue(String key){
        return valueOperations.get(key);
    }
}複製程式碼

測試類

@Repository
public class ValueRedisDao {

    @Autowired
    public RedisBaseDao redisBaseDao;

    private String getKey(){
        return "param";
    }

    public void save(String param){
        this.redisBaseDao.addValue(this.getKey(), param);
    }

    public String getParam(){
        return this.redisBaseDao.getValue(this.getKey());
    }
}複製程式碼

單元測試用例

編寫單元測試用例,測試Redis是否正常工作。

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(WebMain.class)
public class RedisTest {

    @Autowired
    private ValueRedisDao valueRedisDao;

    @Test
    public void test() throws Exception {
    this.valueRedisDao.save("LiangGzone");
    System.out.println(this.valueRedisDao.getParam());
    }
}複製程式碼

總結

上面這個簡單的案例,讓我們看到了 Spring Boot 整合 Redis 的整個流程。實際上,與 Spring 4 中 通過 Spring Data Redis 整合 Redis 並無二意, Spring Boot 預設整合了一些配置資訊,但是個人更加偏向於方案二的手動建立方式,為什麼呢,因為更方便擴充套件。

原始碼

相關示例完整程式碼: springboot-action

(完)

更多精彩文章,盡在「服務端思維」微信公眾號!

Spring Boot 揭祕與實戰(二) 資料儲存篇 - Redis

相關文章