91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

springboot怎么使用redis注解

小億
94
2023-08-23 08:03:10
欄目: 云計算

在Spring Boot中使用Redis注解,需要完成以下步驟:

  1. 添加Redis依賴:在pom.xml文件中添加Redis相關依賴,例如:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
  1. 配置Redis連接:在application.properties文件中配置Redis連接信息,包括主機、端口、密碼等。例如:
spring.redis.host=127.0.0.1
spring.redis.port=6379
spring.redis.password=
  1. 創建Redis配置類:創建一個配置類,用于配置Redis連接工廠和Redis模板等。例如:
@Configuration
@EnableCaching
public class RedisConfig {
@Bean
public RedisConnectionFactory redisConnectionFactory() {
RedisStandaloneConfiguration configuration = new RedisStandaloneConfiguration();
configuration.setHostName("127.0.0.1");
configuration.setPort(6379);
configuration.setPassword(RedisPassword.none());
LettuceConnectionFactory factory = new LettuceConnectionFactory(configuration);
factory.afterPropertiesSet();
return factory;
}
@Bean
public RedisTemplate<Object, Object> redisTemplate() {
RedisTemplate<Object, Object> template = new RedisTemplate<>();
template.setConnectionFactory(redisConnectionFactory());
template.setDefaultSerializer(new GenericJackson2JsonRedisSerializer());
return template;
}
}
  1. 在需要使用Redis的類或方法上添加注解:可以使用@Cacheable@CachePut@CacheEvict等注解來實現緩存操作。例如:
@Service
public class UserService {
@Autowired
private UserRepository userRepository;
@Cacheable(value = "users", key = "#id")
public User getUserById(Long id) {
return userRepository.findById(id).orElse(null);
}
@CachePut(value = "users", key = "#user.id")
public User saveUser(User user) {
return userRepository.save(user);
}
@CacheEvict(value = "users", key = "#id")
public void deleteUser(Long id) {
userRepository.deleteById(id);
}
}
  1. 啟用緩存:在啟動類上添加@EnableCaching注解,開啟緩存功能。例如:
@SpringBootApplication
@EnableCaching
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

這樣,就可以在Spring Boot中使用Redis注解進行緩存操作了。

0
天全县| 惠水县| 十堰市| 济阳县| 湘西| 康定县| 达孜县| 敦煌市| 呈贡县| 尉氏县| 新乐市| 黔西县| 江门市| 环江| 湖口县| 盐池县| 和林格尔县| 天柱县| 静海县| 分宜县| 文昌市| 泸水县| 崇文区| 长兴县| 南乐县| 广汉市| 合江县| 眉山市| 湘阴县| 罗田县| 广德县| 开原市| 昔阳县| 延安市| 郓城县| 金坛市| 阿克陶县| 普格县| 榆树市| 丹棱县| 浮山县|