我有一个portlet,可以添加/更新/删除书籍和添加作者。此外,您可以在尝试添加图书时选择现有作者。
现在我需要显示每位作者在“作者”表中写了多少本书。我该怎么做?我是liferay中的新手,我甚至不知道。
这是我的service.xml
<entity name="Book" local-service="true" remote-service="true" cache-enabled="false">
<column name="bookId" type="long" primary="true" />
<column name="bookName" type="String" />
<column name="bookDescription" type="String" />
<column name="authors" type="Collection" entity="Author" mapping-table="Books_Authors" />
<finder return-type="Collection" name="bookName">
<finder-column name="bookName"></finder-column>
</finder>
</entity>
<entity name="Author" local-service="true" remote-service="true" cache-enabled="false">
<column name="authorId" type="long" primary="true" />
<column name="authorName" type="String" />
<column name="books" type="Collection" entity="Book" mapping-table="Books_Authors" />
</entity>
答案 0 :(得分:3)
Service Builder是您的朋友。
您只需在service.xml
中的图书实体中添加一个查找器。如果您的实体有一个名为author
的字段:
<finder name="Author" return-type="Collection">
<finder-column name="author" />
</finder>
build-service的执行将生成方法BookUtil.findByAuthor()
和BookUtil.countByAuthor()
。
您现在可以在BookLocalServiceImpl
中实现相应的方法,调用前一个,在另一个build-serivce运行之后,它们可以在Util
类中使用。像
public List<Book> getByAuthor(String author) {
return getPersistence().findByAuthor(author);
}
public int countByAuthor(String author) {
return getPersistence().countByAuthor(author);
}
在最后一次调用build-service之后,您可以从BookLocalServiceUtil
。
如果您只想要计数,请不要检索所有集合。如果有很多记录,这是一个坏主意。改为调用计数。