如何修复错误无法找到课程' io.realm.rx.RealmObservableFactory $ 2'?

时间:2016-01-09 03:51:12

标签: android realm

我正在使用Eclipse开发一个带有领域的android应用程序。但我面临一个问题。当我创建域的对象时,在realm.createObject(Product.class)中发生以下异常。

你能帮我理解为什么会发生这种异常吗?我身边有什么遗漏的东西吗?

  

错误:无法找到课程' io.realm.rx.RealmObservableFactory $ 2',   从方法io.realm.rx.RealmObservableFactory.from

引用
Product product=new Product();
Realm realm = Realm.getInstance(this);
realm.beginTransaction();
realm.createObject(Product.class);
product.setId("1001");
product.setName("John");
realm.commitTransaction();
realm.close();

产品类对象文件。

 import io.realm.RealmObject;
 import io.realm.annotations.PrimaryKey;
 import io.realm.annotations.RealmClass;
 import io.realm.*;

 @RealmClass
 public class Product extends RealmObject {
 @PrimaryKey
 String id;
 String name;
 public Product(){
    super();
 }
 public Product(String id, String name){    
    super();
    this.id = id;
    this.name = name; 
 }
public String getId() {
    return id;
}
public void setId(String id) {
    this.id = id;
}   
 public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
}

谢谢,

1 个答案:

答案 0 :(得分:1)

我猜测Eclipse在某种程度上没有优雅地处理可选包含的缺失Rx.Observable类。您是否尝试过此处描述的任何一种解决方案? https://realm.io/docs/java/latest/#jackson-databind