小编Cla*_*iaR的帖子

PageImpl 反序列化期间出错:无法构造“org.springframework.data.domain.PageImpl”的实例

问题是当将 Spring 缓存与 Redis 缓存管理器一起使用时,由于没有默认构造函数,无法反序列化 Spring Pageable 响应

使用的spring boot版本是2.1.4.RELEASE

使用序列化器的 Redis 配置类

@Bean
public RedisCacheManager redisCacheManager(LettuceConnectionFactory lettuceConnectionFactory) {
    RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig().disableCachingNullValues()
        .serializeValuesWith(
            RedisSerializationContext.SerializationPair.fromSerializer(RedisSerializer.json()));

    redisCacheConfiguration.usePrefix();

    return RedisCacheManager.RedisCacheManagerBuilder.fromConnectionFactory(lettuceConnectionFactory)
            .cacheDefaults(redisCacheConfiguration).build();
}
Run Code Online (Sandbox Code Playgroud)

我正在尝试使用 Spring 缓存和 Redis 作为缓存后端在 Redis 缓存中缓存 Spring REST API 页面结果响应

@GetMapping
@Cacheable("Article_Response_Page")
public Page<Article> findAll(Pageable pageable) {
    return articleRepository.findAll(pageable);
}
Run Code Online (Sandbox Code Playgroud)

我可以Page<Article>使用序列化程序在 Redis 缓存中看到以 JSON 形式缓存,RedisSerializer.json()但在下一次调用期间,当从缓存中读取数据时,出现以下异常

com.fasterxml.jackson.databind.exc.InvalidDefinitionException: Cannot 
construct instance of `org.springframework.data.domain.PageImpl` (no 
Creators, like default construct, exist): cannot deserialize from Object 
value (no delegate- or …
Run Code Online (Sandbox Code Playgroud)

fasterxml spring-boot spring-cache spring-data-commons jackson2

13
推荐指数
2
解决办法
2万
查看次数

ModuleNotFoundError:没有名为“tensorflow.python.trackable”的模块

声明是:

from tensorflow.python.trackable import base as trackable
Run Code Online (Sandbox Code Playgroud)

但出现模块未找到错误。

##### File "C:\Users\mahit\anaconda3\lib\site-packages\keras\dtensor\lazy_variable.py", line 26, in <module>
   from tensorflow.python.trackable import base as trackable

ModuleNotFoundError: No module named 'tensorflow.python.trackable'
Run Code Online (Sandbox Code Playgroud)

该代码位于 keras 库内。我不明白为什么会出现此模块未找到错误。因为这是包装中附带的代码。也不确定 trackable 的作用。请帮我解决这个问题。

python keras tensorflow site-packages tf.keras

5
推荐指数
1
解决办法
7299
查看次数

如何在 Vscode 中撤消 ipynb 选项卡

我不小心删除了笔记本 .ipynb 选项卡,在 VsCode ctrl+中z不起作用。我不知道如何撤消它,这是一个很长的程序,我不想再写一遍。

visual-studio-code

1
推荐指数
1
解决办法
1167
查看次数