02-Jun-2023 14:33:32.485 严重 [http-nio-8989-exec-7] org.apache.catalina.core.StandardWrapperValve.invoke 在路径为/aqzl_project_war_exploded的上下文中,Servlet[action]的Servlet.service()引发了具有根本原因的异常Request processing failed; nested exception is org.springframework.data.redis.serializer.SerializationException: Could not read JSON: Unrecognized field "offset" (class org.haze.base.page.PageBean), not marked as ignorable (3 known properties: "pageNumber", "count", "pageSize"]) at [Source: [B@6aa1eb7a; line: 1, column: 433] (through reference chain: java.util.LinkedHashMap["rows"]->java.util.ArrayList[0]->org.haze.ajj.risk.model.RiskPoint["pageBean"]->org.haze.base.page.PageBean["offset"]); nested exception is com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "offset" (class org.haze.base.page.PageBean), not marked as ignorable (3 known properties: "pageNumber", "count", "pageSize"])
时间: 2024-04-27 15:25:08 浏览: 151
tomcat 7 最新版本 apache-tomcat-7.0.109
5星 · 资源好评率100%
这似乎是一个 Java Web 应用程序中的错误日志,其中一个名为 "org.springframework.data.redis.serializer.SerializationException" 的异常被抛出。该异常可能是由于 Redis 序列化和反序列化数据时出现问题导致的。更具体地说,它似乎是由于尝试将一个名为 "offset" 的未知字段反序列化为一个名为 "PageBean" 的对象时引起的。这可能是因为序列化和反序列化的类之间存在版本不兼容性问题所致。
阅读全文