自从选择了做程序员,就更习惯不断学习新的东西,迎接新的挑战。不过其实随着技术的不断发展,各种大神们“殚精竭虑”的写出了各种框架,不断的降低难度,比如Spring Boot以及一系列的衍生产品,确实给我们的开发带来的非常大的方便。
具体到集成Redis,Spring Boot几乎算是做到了“开箱即用”吧,好,预计你完成这个小的demo需要15分钟左右。
首先需要新建一个新的maven项目,名称可以就叫做spring-boot-redis-example,或是随便你喜欢的名字都好。然后把pom文件修改如下:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.yuchang</groupId>
<artifactId>spring-boot-redis-example</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.6.RELEASE</version>
<relativePath/>
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
在pom文件中,重点就是引入了spring-boot-starter-data-redis
。其他就是一个最简单的Spring Boot项目的配置。
接着,把redis的配置文件拷贝到resource目录下,文件名为application.properties,以下是我本机自己启动了一个redis实例的配置文件,供你参考,当然你也可以用yaml的形式,道理是一样的。
spring.redis.database=0
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.pool.max-active=8
spring.redis.pool.max-wait=-1
spring.redis.pool.max-idle=8
spring.redis.pool.min-idle=0
spring.redis.timeout=30
然后,可以先创建一个应用的启动方法,代码如下,这里需要重要,SpringBoot的启动类必须放到一个package下哦
package com.yuchang.redis.example;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 应用启动类
* @author changyu
*/
@SpringBootApplication
public class RedisExampleApplication {
public static void main(String[] args) {
SpringApplication.run(RedisExampleApplication.class);
}
}
额,好,如果我告诉你,其实已经把redis集成好了,你会不会以为我在骗你?
嗯,其实真的好了,这里为了验证,我们自己先写个测试吧
package com.yuchang.redis.example;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* 针对redis的集成后效果的测试
*/
@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = RedisExampleApplication.class)
public class RedisExampleApplicationTest {
@Autowired
private RedisTemplate<String,String> redisTemplate;
@Test
public void testRedisSetAndGet(){
String key = "Hello";
String value = "World";
redisTemplate.opsForValue().set(key,value);
String resFromRedis = redisTemplate.opsForValue().get(key);
Assert.assertTrue(resFromRedis.equals(value));
}
}
这时如果,你的本机有启动一个端口为 6379的redis实例,上面这个测试用例是可以顺利通过的,也能证明我们的集成是成功的。同时如果你是一个redis的集群,也只需要修改配置文件就可以。
这里,我们回顾一下我们集成的过程,首先是引入的spring-boot-starter-data-redis
,接着把redis配置文件放到项目内,Spring Boot在启动的时候,就会默认集成好,还是非常方便的呢。
而后续,spring-boot-starter-data-redis
还有其他的功能,比如大部分时间我们其实都可以不用redisTemplate来操作缓存,直接使用提供的注解就能适应大部分的场景,以及目前我们实际是使用的默认配置,今后也可以根据需求自己定制,包括一些集成的原来内容,在后续的文章中都会有介绍,敬请期待哦~
最后,代码我已经上传到github(跳转链接),其实并没有几行代码,仅供参考。