亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

springboot怎么配置緩存注解

小億
89
2024-01-19 18:35:29
欄目: 編程語言

Spring Boot可以使用緩存注解來配置緩存,主要有兩種方式:

  1. 使用@EnableCaching注解開啟緩存支持,在需要緩存的方法上使用緩存注解,如@Cacheable、@CachePut、@CacheEvict等。
@SpringBootApplication
@EnableCaching
public class Application {

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}
@Service
public class UserService {

    @Cacheable("users")
    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 deleteUserById(Long id) {
        // 從數據庫刪除用戶信息
        userRepository.deleteById(id);
    }
}
  1. 在application.properties或application.yml文件中配置緩存相關的屬性,如緩存類型、緩存過期時間等。
#使用Redis緩存
spring.cache.type=redis

#Redis配置
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=
spring.redis.database=0

#緩存過期時間(單位:秒)
spring.cache.redis.time-to-live=3600
#使用Redis緩存
spring:
  cache:
    type: redis

#Redis配置
spring:
  redis:
    host: localhost
    port: 6379
    password:
    database: 0

#緩存過期時間(單位:秒)
spring:
  cache:
    redis:
      time-to-live: 3600

注意:以上示例使用了Redis作為緩存存儲,如果需要使用其他緩存實現,可以相應地修改配置。

0
剑河县| 正镶白旗| 台东市| 寿光市| 丹寨县| 临洮县| 九龙县| 荔浦县| 汉寿县| 新河县| 呈贡县| 绩溪县| 英吉沙县| 东安县| 南皮县| 博乐市| 大庆市| 高雄县| 五常市| 唐河县| 格尔木市| 棋牌| 南安市| 靖安县| 丰顺县| 德保县| 修文县| 荔浦县| 美姑县| 庆云县| 菏泽市| 高平市| 湖州市| 江城| 丹巴县| 大理市| 福清市| 石楼县| 大同市| 黄平县| 迁西县|