Foros de discusión

ServiceBuilder one-to-many realationship

Mike Wirth, modificado hace 11 años.

ServiceBuilder one-to-many realationship

New Member Mensajes: 3 Fecha de incorporación: 2/08/12 Mensajes recientes
Hi,

I struggle with the ServiceBuilder with the Liferay SDK 6.1.1.

After a few weeks working with the ServiceBuilder I wonder what is the strategy? ServiceBuilder is using Hibernate underneath, but why is it then building it's own implementations and creating it's own models, utils and persistency layer? Why does Liferay invent the wheel again?

The documentation of the ServiceBuilder is very little, almost inexistent. There are a few docs and tutorials, but none of them is for any better use that a simple select statement. On the web I found many questions to the ServiceBuilder relationship mapping, but without any solution.

I try to implement a simple one-to-many relationship to the SAME entity. There is no example or documentation about how to do this. I mean this is pretty standard of every ORM framework and I think this is not a very exotic requirement, or is it? If ServiceBuilder depends on Hibernate or JPA why isn't it using that feature, why does LIferay it's own implementation?

I tried to make a simple example, but it can't build the service without error and the expected Foo.getChildren() method is missing.

Thanks,
Michael




<!--?xml version="1.0" encoding="UTF-8"?-->

<service-builder package-path="com.liferay.test">
  <author>author</author>
  <namespace>test</namespace>

  <entity name="Foo" local-service="true" remote-service="true">

    <!-- PK fields -->

    <column name="fooId" type="long" primary="true" />

    <!-- Audit fields -->

    <!-- Other fields -->
        <column name="children" type="Collection" entity="Foo" mapping-key="parentId"></column>
        <column name="parentId" type="long"></column>

    <!-- Finder methods -->
  </entity>
</service-builder>
MICHAIL MOUDATSOS, modificado hace 11 años.

RE: ServiceBuilder one-to-many realationship

Regular Member Mensajes: 110 Fecha de incorporación: 4/10/11 Mensajes recientes
Could anyone reply on this please? Can we or can we not, define a 'one to many' or 'many to many' relationship between an entity and itself?

Thank you in advance
thumbnail
David H Nebinger, modificado hace 11 años.

RE: ServiceBuilder one-to-many realationship

Liferay Legend Mensajes: 14915 Fecha de incorporación: 2/09/06 Mensajes recientes
Many to many relationships have not been supported by Liferay.

One to many relationships are supposed to be supported, but it doesn't translate very well.

Your best bet to handle these relationships is to do so on your own.

For example, to solve the OP's issue I'd add a finder method to return a collection using the parentId as the argument. That will create the method in the persistance layer, which must be exposed in the XxxLocalServiceImpl class to make it available to outside callers.

Many to many is doable in the same fashion, just a little more work.

Remember that SB is not intended to be a full ORM stack; it is meant to solve a specific problem (how does one expose DAOs in a portal environment that can be accessed across the web app class loader boundary).