Liferay Service Builder 6.2: Many to one relationships
问题 I want to create a one to many relationships and I've used the following 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> My