我有我的 Eclipse 工作区 2 项目:
- playOrm(它生成了一个 jar 文件)
- MyOwnProject(我使用上面生成的 jar 文件在 MyOwnProject 上使用类似 ORM 的 playOrm 到 Cassandra)
我的问题:
对于在 MyOwnProject 上定义的类,我如何才能使用在com.alvazan.test.db
示例中定义的 User 类的相同好处?当我执行位于 MyOwnProject 的类时,playOrm 在我的键空间上创建它,并且还管理插入 ( NoSqlEntityManager.put()
) 或查询 ( @NoSqlQuery
)
我将这些注释放在我的类上,但是当我执行它们时出现错误消息:
java.lang.IllegalArgumentException: Entity type=com.s1mbi0se.dmp.da.bean.User was not scanned and added to meta information on startup. It is either missing @NoSqlEntity annotation or it was not in list of scanned packages
我尝试使用@NoSqlEntity
注释定义我的类,但它仍然无法正常工作。