SpringMVC 整合 redis3.0x
SpringMVC整合Redis 3.0.x,你可以使用Spring Data Redis。以下是一个基本的配置示例:
- 在
pom.xml
中添加依赖:
<dependencies>
<!-- Spring Data Redis -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>2.0.14.RELEASE</version>
</dependency>
<!-- Redis客户端 -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>3.0.1</version>
</dependency>
</dependencies>
- 在
applicationContext.xml
中配置Redis:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- Redis 配置 -->
<bean id="redisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<property name="hostName" value="localhost"/>
<property name="port" value="6379"/>
</bean>
<!-- 使用RedisTemplate进行操作 -->
<bean id="redisTemplate" class="org.springframework.data.redis.core.RedisTemplate">
<property name="connectionFactory" ref="redisConnectionFactory"/>
</bean>
</beans>
- 在你的SpringMVC Controller中使用
RedisTemplate
:
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class RedisController {
@Autowired
private RedisTemplate<String, Object> redisTemplate;
@ResponseBody
@RequestMapping("/set")
public String setValue() {
redisTemplate.opsForValue().set("key", "value");
return "Set key";
}
@ResponseBody
@RequestMapping("/get")
public String getValue() {
Object value = redisTemplate.opsForValue().get("key");
return "Get key: " + value;
}
}
确保你的Redis服务器正在运行,并且配置中的hostName
和port
与你的Redis服务器设置相匹配。
以上代码提供了SpringMVC Controller中的基本使用示例,展示了如何使用RedisTemplate
进行键值对的设置和获取操作。在实际应用中,你可能需要根据具体需求进行更复杂的配置和编码。
评论已关闭