SpringBoot——SpringBoot集成Redis
Posted 张起灵-小哥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot——SpringBoot集成Redis相关的知识,希望对你有一定的参考价值。
1.开始
SpringBoot集成Redis了话,这里我不再集成MyBatis了,就单纯的做一个简单的模拟,我们知道这个过程是怎么样的就可以了。
2.步骤
2.1 在pom.xml文件中添加依赖
<!-- SpringBoot集成Redis的起步依赖 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2.2 配置SpringBoot核心配置文件
#设置redis的配置信息
spring.redis.host=localhost
spring.redis.port=6379
这里没有配置内嵌Tomcat端口号,以及项目的上下文根,所以默认端口号就是8080,上下文根就是 /
2.3 创建一个StudentService和它的实现类
package com.songzihao.springboot.service;
/**
*
*/
public interface StudentService {
void put(String key, String value);
String get(String key);
}
配置了上面的步骤,Spring Boot 将自动配置 RedisTemplate,在需要操作 redis 的类中注入 redisTemplate 即可。
注意:Spring Boot 帮我们注入 RedisTemplate 类,泛型里面只能写 <String, String>、 <Object, Object> 、或者什么都不写。
package com.songzihao.springboot.service.impl;
import com.songzihao.springboot.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.stereotype.Service;
/**
*
*/
@Service
public class StudentServiceImpl implements StudentService {
@Autowired
private RedisTemplate<Object,Object> redisTemplate;
@Override
public void put(String key, String value) {
redisTemplate.opsForValue().set(key,value);
}
@Override
public String get(String key) {
String count= (String) redisTemplate.opsForValue().get(key);
return count;
}
}
2.4 创建一个StudentController
其中 /put 对应的操作是 将值存入redis;/get 对应的操作是 从redis中取值。
package com.songzihao.springboot.controller;
import com.songzihao.springboot.service.StudentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
/**
*
*/
@RestController
public class StudentController {
@Autowired
private StudentService studentService;
@RequestMapping(value = "/put")
public Object put(String key,String value) {
studentService.put(key,value);
return "值已成功放入redis";
}
@RequestMapping(value = "/get")
public String get() {
String count=studentService.get("count");
return "数据count为: " + count;
}
}
2.5 启动Redis服务
2.6 启动入口类测试
以上是关于SpringBoot——SpringBoot集成Redis的主要内容,如果未能解决你的问题,请参考以下文章
前后端分离项目中 springboot 集成 shiro 实现权限控制
搭建一个简单的SpringBoot+Vue+MySQL | (集成MyBatis-PluslombokSwagger)
搭建一个简单的SpringBoot+Vue+MySQL | (集成MyBatis-PluslombokSwagger)
SpringBoot+SpringCloud+vue+Element开发项目——集成Druid数据源