我想创建一对多关系,并且使用了以下service.xml:

<entity name="Student" local-service="true" remote-service="true" cache-enabled="false">
    <column name="studentId" type="long" primary="true" />
    <column name="courses" type="Collection" entity="Course"/>
</entity>

<entity name="Course" local-service="true" remote-service="true" cache-enabled="false">
    <column name="courseId" type="long" primary="true" />
    <column name="studentId" type="long"/>
</entity>

我的问题是没有为collections方法创建任何东西。没有异常(exception),没有。
生成了类,并且存在简单的getter方法,但没有getCourse()。

我做错了什么?

最佳答案

不会自动为您创建 setter/getter 。每个实体代表数据库中的一个表,因此您必须创建任何您认为有用的 getter 。幸运的是,如果需要,Service Builder也可以生成此文件。

首先,我们要求Service Builder在StudentsCourses之间创建一个映射表。

<entity name="Student" local-service="true" remote-service="true" cache-enabled="false">
    <column name="studentId" type="long" primary="true" />

    <column name="courses" type="Collection" entity="Course" mapping-table="Courses_Students" />
</entity>

<entity name="Course" local-service="true" remote-service="true" cache-enabled="false">
    <column name="courseId" type="long" primary="true" />

    <column name="students" type="Collection" entity="Student" mapping-table="Courses_Students" />
</entity>

接下来,我们在CourseLocalServiceImpl中创建适当的方法:
public List<Course> getStudentCourses(long studentId)
    throws PortalException, SystemException {

    return coursePersistence.getCourses(studentId);
}

为了从Courses对象获取Student,我们在生成的StudentImpl.java内创建方法:
public List<Course> getCourses() throws Exceptions {
    return CorseLocalServiceUtil.getStudentCourses(getStudentId());
}

最后,通过运行ant build-service来重新生成您的类。

现在,我们可以通过编写以下内容获得学生正在修读的所有类(class):
List<Course> courses = CourseLocalServiceUtil.getStudentCourses(studentId);

或者
List<Course> courses = student.getCourses();

10-07 13:11
查看更多