我这里是由于修改了LoginUser的包路径
ruoyi里面Redis使用FastJson序列化,FastJson支持AutoType功能,这个功能在序列化的JSON字符串中带上类型信息,在反序列化时,不需要传入类型,实现自动类型识别。
ruoyi在Constants里面规定了需要支持自动类型的类名前缀
public static final String[] JSON_WHITELIST_STR = { "org.springframework", "com.ruoyi" };
解决方法:只需要把这个常量里面的com.ruoyi修改为修改后的路径,例如com.mypack