-
Notifications
You must be signed in to change notification settings - Fork 192
RxCache not support generic paradigm #73
Comments
I solved this problem use other method before
change like this:
we just change the next step: use rxjava
ComposeString2List.java:
hope this to help you |
RxCache delegate this kind of responsibility to the current jolyglot provider. In your case, it is Gson, so you will need to be aware about its limitations (configuration) when marshalling/unmarshalling data. |
There is another way
|
能不能来个中文版本的解决方案,本人就是遇到这个问题,不知道什么原因导致的 |
@XiFanYin 其实上面已经给出解决方案了, 很多人没看懂? 那我来总结一下, 之前的写法是, 自己创建一个实体类, 如 User, 然后使用 BaseData< User > 作为服务器返回的结果, 现在的解决方案是, 稍微修改下之前定义的 User, 然后直接使用 User 作为服务器返回的结果, 这个解决方案对之前的代码改变较小, 也比较简单, 代码如下: public class BaseData<T> {
private int code;
private String msg;
private T data;
public T getData() {
return data;
}
}
只要继承 BaseData 并指定范型 (如果不是集合则继承 BaseData<User>) 即可, 其他都不用改
public class User extends BaseData<List<User>> {
private int id;
private String name;
public int getId() {
return id;
}
}
Observable<User> getUsers(Observable<User> users, DynamicKey idLastUserQueried, EvictProvider evictProvider);
....
这是获取数据的方式
List<User> data = user.getData();
int id = data.get(0).getId(); |
User会持有List ,List data中又存在User ,请问这种方式不会有问题吗? |
@jonenet User 作为 类 的时候, 它即是 BaseData 又是 JavaBean,但当 User 被解析为对象进行操作时,只是把它看作是两种角色中的一个,这个方式在理解上可能比较绕,但是确不会对结果产生什么影响, 也是现在最简单的解决方案,只是需要注意 User 对象在不同的角色做不同的操作即可 如果你觉得这个方式不好理解,你也可以使用上面那个兄弟在 User 中定义一个内部类的方式,其实达到的目的都是一样的 |
直接用 T 作为缓存应该可以吧 |
@VictorAlbertos Hi, I meet the same issue with @ml-bright , and I also tried JacksonSpeaker, but also got the error |
@JessYanCoding 如果BaseData和user里有相同的参数,会出现无法解析的问题。UserInfo declares multiple JSON fields named gold |
@PaulWoitaschek @xilost [#41]Don't Cache the BaseResponse, instead, use map operator to transform it to detail data model. |
不会,你不要看类名套来套去的以为会有问题。类的定义只是定义了一种数据结构,只要能满足数据的存放需求,怎么嵌套都没关系。java也没限制同类互相嵌套。 |
@BryceLee 但是BaseResponse里的数据也是我需要的呢。 |
like this:
I want to cast to
Response<List<City>>
use theT
while throw exception
java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap
The text was updated successfully, but these errors were encountered: