溫馨提示×

springboot中cachemanager配置的方法是什么

小億
333
2024-05-21 18:23:33
欄目: 編程語言

在Spring Boot中配置CacheManager有兩種方法:

  1. 使用@EnableCaching注解開啟緩存功能,并在配置類中通過@Bean注解配置CacheManager的實現(xiàn)類。示例代碼如下:
import org.springframework.cache.CacheManager;
import org.springframework.cache.concurrent.ConcurrentMapCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.cache.annotation.EnableCaching;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        return new ConcurrentMapCacheManager("cacheName");
    }
}
  1. 在application.properties或application.yml中配置CacheManager的相關屬性。示例代碼如下:
spring.cache.type=caffeine
spring.cache.cache-names=cacheName
spring.cache.caffeine.spec=maximumSize=500,expireAfterAccess=5m

以上是兩種常用的配置CacheManager的方法,可以根據(jù)具體需求選擇適合的方式進行配置。

0