springboot整合redis中@CachePut、@Cacheable、@CacheEvict的使用
时间: 2023-11-07 14:03:13 浏览: 133
@CachePut、@Cacheable和@CacheEvict是Spring Boot中用于缓存操作的注解。它们是org.springframework.cache.annotation包下的注解。
@CachePut注解表示当方法被调用后,将方法的返回值放入缓存中。如果缓存中已经存在相同的key,则会更新缓存中的值。
@Cacheable注解表示在调用方法之前,首先检查缓存中是否存在对应的key,如果存在,则直接返回缓存中的值,如果不存在,则调用方法,并将方法的返回值放入缓存中。
@CacheEvict注解表示从缓存中移除一个或多个key对应的值。
要使用这些注解,需要先导入相关的依赖,如spring-boot-starter-data-redis,然后配置Redis服务器的基本信息,比如Redis的地址、端口、数据库等。最后,在启动类或配置类上使用@EnableCaching注解开启缓存。
相关问题
springboot整合redis整合@Cacheable、@CachePut、@CacheEvict注解增删改查实例
好的,下面是一个使用Spring Boot整合Redis的`@Cacheable`、`@CachePut`、`@CacheEvict`注解实现增删改查的示例:
1. 添加Redis依赖
在pom.xml中添加以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
```
2. 配置Redis连接
在application.properties中添加以下配置:
```properties
# Redis连接配置
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
# 开启缓存
spring.cache.type=redis
```
3. 编写Redis配置类
```java
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.interceptor.KeyGenerator;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializer;
import org.springframework.data.redis.serializer.StringRedisSerializer;
import java.lang.reflect.Method;
import java.util.Arrays;
@Configuration
@EnableCaching
public class RedisConfig {
@Bean
public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory redisConnectionFactory) {
RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
redisTemplate.setConnectionFactory(redisConnectionFactory);
// key序列化方式
RedisSerializer<String> stringRedisSerializer = new StringRedisSerializer();
redisTemplate.setKeySerializer(stringRedisSerializer); // key
redisTemplate.setHashKeySerializer(stringRedisSerializer); // hash key
// value序列化方式
RedisSerializer<Object> valueRedisSerializer = new GenericJackson2JsonRedisSerializer();
redisTemplate.setValueSerializer(valueRedisSerializer); // value
redisTemplate.setHashValueSerializer(valueRedisSerializer); // hash value
redisTemplate.afterPropertiesSet();
return redisTemplate;
}
@Bean
public CacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
RedisCacheManager.RedisCacheManagerBuilder builder = RedisCacheManager.RedisCacheManagerBuilder.fromConnectionFactory(redisConnectionFactory);
return builder.build();
}
@Bean
public KeyGenerator wiselyKeyGenerator() {
return (Object target, Method method, Object... params) -> {
StringBuilder sb = new StringBuilder();
sb.append(target.getClass().getName());
sb.append(method.getName());
Arrays.stream(params).forEach(param -> sb.append(param.toString()));
return sb.toString();
};
}
}
```
4. 编写实体类
```java
import java.io.Serializable;
public class User implements Serializable {
private static final long serialVersionUID = 1L;
private Integer id;
private String name;
private Integer age;
public User(Integer id, String name, Integer age) {
this.id = id;
this.name = name;
this.age = age;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}
}
```
5. 编写Service
```java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.CachePut;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
@Service
public class UserService {
@Autowired
private UserDao userDao;
@Cacheable(value = "user", keyGenerator = "wiselyKeyGenerator")
public User getUserById(Integer id) {
return userDao.getUserById(id);
}
@CachePut(value = "user", keyGenerator = "wiselyKeyGenerator")
public User updateUser(User user) {
userDao.updateUser(user);
return user;
}
@CacheEvict(value = "user", keyGenerator = "wiselyKeyGenerator")
public void deleteUserById(Integer id) {
userDao.deleteUserById(id);
}
}
```
6. 编写Controller
```java
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/{id}")
public User getUserById(@PathVariable Integer id) {
return userService.getUserById(id);
}
@PutMapping("")
public User updateUser(@RequestBody User user) {
return userService.updateUser(user);
}
@DeleteMapping("/{id}")
public void deleteUserById(@PathVariable Integer id) {
userService.deleteUserById(id);
}
}
```
7. 测试
启动应用后,可以通过以下方式测试:
- 获取用户:GET http://localhost:8080/user/1
- 更新用户:PUT http://localhost:8080/user
请求体:
```json
{
"id": 1,
"name": "Tom",
"age": 20
}
```
- 删除用户:DELETE http://localhost:8080/user/1
以上就是一个使用Spring Boot整合Redis的`@Cacheable`、`@CachePut`、`@CacheEvict`注解实现增删改查的示例。
实验六: 实验目的: 1.掌握SpringBoot整合redis的基本步骤 2.掌握redis第三方技术的应用 3.掌握基于注解的Redis缓存实现 实验要求: 设计程序,利用@EnableCaching、@Cacheable、@CacheEvict@CachePut注解的使用实现redis作为缓存的应用。(可以参考课堂案例和作业内容完成)
好的,您的问题是关于实验六的内容。实验六的主要目的是让学生掌握SpringBoot整合redis的基本步骤,了解redis第三方技术的应用,以及掌握基于注解的Redis缓存实现。在实验中,可以使用@EnableCaching、@Cacheable、@CacheEvict、@CachePut等注解来实现对redis的缓存操作。您可以参考课堂案例和作业内容,按照实验要求设计程序,完成实验。希望对您有所帮助!
阅读全文