gpt4 book ai didi

java - spring-boot-devtools 在从缓存获取时导致 ClassCastException。

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:17:26 52 4
gpt4 key购买 nike

我在从缓存中获取值时遇到问题。

java.lang.RuntimeException: java.lang.ClassCastException: com.mycom.admin.domain.User cannot be cast to com.mycom.admin.domain.User

缓存配置

@Configuration
@EnableCaching
@AutoConfigureAfter(value = { MetricsConfiguration.class, DatabaseConfiguration.class })
@Profile("!" + Constants.SPRING_PROFILE_FAST)
public class MemcachedCacheConfiguration extends CachingConfigurerSupport {

private final Logger log = LoggerFactory.getLogger(MemcachedCacheConfiguration.class);

@Override
@Bean
public CacheManager cacheManager() {
ExtendedSSMCacheManager cacheManager = new ExtendedSSMCacheManager();
try {
List<SSMCache> list = new ArrayList<>();
list.add(new SSMCache(defaultCache("apiCache"), 86400, false));
cacheManager.setCaches(list);
} catch (Exception e) {
e.printStackTrace();
}
return cacheManager;
}


@Override
public CacheResolver cacheResolver() {
return null;
}

@Override
public CacheErrorHandler errorHandler() {
return null;
}

private Cache defaultCache(String cacheName) throws Exception {
CacheFactory cacheFactory = new CacheFactory();
cacheFactory.setCacheName(cacheName);
cacheFactory.setCacheClientFactory(new MemcacheClientFactoryImpl());
String serverHost = "127.0.0.1:11211";
cacheFactory.setAddressProvider(new DefaultAddressProvider(serverHost));
cacheFactory.setConfiguration(cacheConfiguration());
return cacheFactory.getObject();
}

@Bean
public CacheConfiguration cacheConfiguration() {
CacheConfiguration cacheConfiguration = new CacheConfiguration();
cacheConfiguration.setConsistentHashing(true);
return cacheConfiguration;
}

}

并注释为

@Cacheable(value = "apiCache#86400", key = "'User-'.concat(#login)")

我正在使用 com.google.code.simple-spring-memcached 3.5.0

值正在被缓存,但在获取应用程序时抛出类转换错误。可能的问题是什么。

Full stack trace

最佳答案

这是 a known limitation of Devtools .当缓存条目被反序列化时,对象没有附加到正确的类加载器。

有多种方法可以解决此问题:

  1. 在开发中运行应用程序时禁用缓存
  2. 使用不同的缓存管理器(如果您使用的是 Spring Boot 1.3,您可以使用 中的 spring.cache.type 属性强制使用 simple 缓存管理器>application-dev.properties 并在您的 IDE 中启用开发配置文件)
  3. 将 memcached(和缓存的东西)配置为 run in the application classloader .我不推荐该选项,因为上面的前两个更容易实现

关于java - spring-boot-devtools 在从缓存获取时导致 ClassCastException。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34577936/

52 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com