我想创建一对多的关系,并且我使用了以下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方法创建任何内容。没有例外,没有。 生成类并且只有简单的getter方法,但没有getCourse()。
我做错了什么?
答案 0 :(得分:9)
不会自动为您创建getter。每个实体代表数据库中的一个表,因此您必须创建任何您觉得有用的getter。幸运的是,如果需要,Service Builder也能够生成它。
首先,我们要求Service Builder在Students
和Courses
之间创建映射表。
<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
重新生成您的类。
现在我们可以通过写作获得学生正在学习的所有课程:
List<Course> courses = CourseLocalServiceUtil.getStudentCourses(studentId);
或
List<Course> courses = student.getCourses();
答案 1 :(得分:6)
Liferay在其所有版本中都有指定的文档,这有助于从上到下的方法。
请先参考:
对于自发添加以下代码
<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"/>
<finder name="courseId" return-type="Collection">
<finder-column name="courseId" />
</finder>
<finder name="studentId" return-type="Collection">
<finder-column name="studentId" />
</finder>
</entity>
运行build-service,成功执行后,您将看到getter setter方法。