我想在Ebean中使用SpringBoot。我发现了这篇文章:和我可以设置它,并使它与自己的EbeanServerFactory实现一起工作,如本文所示。它指出,如果我将ebean-spring与默认的ebean-server.xml一起添加到我的依赖项中,那么它应该与默认的EbeanServerFactoryBean一起工作。如果我添加ebean-spring并移除我自己的工厂,就会得到一个错误:
No qualifying bean of type [com.avaje.ebean.EbeanServ
我想测试我的@EBean注释类:
@OverrideApi.class: warning: Cannot find annotation method 'scope()' in type 'org.androidannotations.annotations.EBean': class file for org.androidannotations.annotation
我有一个应用程序,允许用户选择特定的关键字,然后应用程序监听包含这些关键字的tweet,并将它们存储在DB中。public class Person extends Model { long id;
List<Keywords> keywords = new ArrayList();
public class Keyword extends