标签: java orm ormlite
我想在android上使用自定义dao和我的模型类。
问题是我的模型类位于一个具有最小依赖关系的单独项目中(ormlite-core和jodatime)。而且我不想添加添加对我的自定义dao的引用所需的所有依赖项。
ormlite-core
jodatime
所以我无法使用注释:
@DatabaseTable(daoClass=ItemDaoImpl.class) public class Item ...
还有其他方法吗?
注意:我将模型地图生成为ormlite_config文件
ormlite_config