1

按照此代码https://github.com/microstream-one/demo-readmecorp/tree/master/core/src/main/java/com/jetstreamdb/demo/readmecorp 我可以看到一本书只有一个作者,意味着一位作者可以拥有多本书 = 一对多关系

试图写一本书有很多作者我试着像在书店里那样做。(我想这将是许多)

改变

private final Author author;

private final Lazy<List<Author>> author;

在构造函数中我改为

this.author = Lazy.Reference(author);

和方法 author() 到

public Collection<Author> author()
    {
        return this.author.get();
    }

我还在 ReadMeCorpData 中注释掉了快速测试的方法,然后我得到了这个错误:

Exception in thread "main" java.lang.ExceptionInInitializerError
    at com.jetstreamdb.demo.readmecorp.Main.main(Main.java:30)
Caused by: java.lang.RuntimeException: Incompatible types: com.jetstreamdb.demo.readmecorp.Author -> one.microstream.persistence.lazy.Lazy

所以我的问题是我怎样才能让一本书有很多作者,可能是我的想法在微流中已经过时了,那么我在哪里或如何获得在微流中以正确方式对数据建模的想法?

(我试图让作者实现 Lazy 并且错误消失了,但是由于我没有找到任何实现 Lazy 的示例代码,我不知道这样做是否可以)

4

1 回答 1

1

您可以使用另一个惰性示例

https://github.com/microstream-one/example-android-recyclerview/blob/master/app/src/main/java/one/microstream/android/data/CustomerRepository.java

于 2020-01-09T15:30:37.487 回答