1

我有“存储”portlet: 在此处输入图像描述

我可以点击“添加图书”:

在此处输入图像描述

但我需要有机会将作者的名字添加到我的书中。所以我创建了新项目,带有新实体“作者”的新服务生成器,现在我也可以添加作者了。但是,当我单击“添加书籍”时,如何使用现有作者制作下拉菜单?如何将该字段与新表绑定 - “作者”?

4

1 回答 1

5

您不需要为作者创建另一个项目,在与书籍实体相同的服务构建器中添加作者实体并添加对另一个表的引用,该表将包含书籍和作者的主键。 service.xml可能:

<service-builder package-path="com.myproject.db">
<author>SO</author>
<namespace>myp</namespace>
<entity name="Book" local-service="true" remote-service="true" cache-enabled="false">
<column name="bookId" type="long" primary="true" />
<column name="name" type="String" />
<column name="description" type="String" />
<column name="price" type="long" />
<column name="author" type="Collection" entity="Author" mapping-table="Author_Books"/>
</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="Author_Books" />
</entity>
</service-builder>

当您部署此 portlet 时,它将创建另一个表myp_Author_Books,该表将具有authorIdand的组合键bookId。比在您的书本形式的渲染方法中添加

List<Author> authorList=AuthorLocalServiceUtil.getAuthor(0, AuthorLocalServiceUtil.getAuthorCount()); renderRequest.addAttribute("listAuthor",authorList )

c:forEach并在 jsp 中使用这个属性aui:select来创建你的下拉列表,就像:

<aui:select name="author" label="Author Name">
    <c:forEach var="currAuthor" items="${listAuthor}">
        <aui:option value="${currAuthor.authorId}" label=" ${student.authorName}"></aui:option>
    </c:forEach>
</aui:select>
于 2016-09-03T15:57:23.587 回答