Foros de discusión

Service Builder: foriegn key, not null constraint

thumbnail
Priyanka Dhingra, modificado hace 11 años.

Service Builder: foriegn key, not null constraint

Liferay Master Mensajes: 501 Fecha de incorporación: 20/12/11 Mensajes recientes
I have a requirement to create entities with columns that have
1.foreign key references and
2.some columns that have NOT NULL constraints

Please suggest something
Thanks and Regards
Priyanka Dhingra
thumbnail
David H Nebinger, modificado hace 11 años.

RE: Service Builder: foriegn key, not null constraint

Liferay Legend Mensajes: 14919 Fecha de incorporación: 2/09/06 Mensajes recientes
So create the table manually in your database. Liferay will not define the FK relationships for you, so that must be a manual step.

For the not null thing, you have a couple of choices...

Easiest one is the definition of the column for the entity. If the column type is a primitive, you'll never have a null value so you don't have to worry about nulls (instead they would be zeros).

For the FK verification side, you can either do lookup and fk validation check within the XxxLocalServiceImpl class (overriding the addXxx and updateXxx methods), or you could leave them as-is and implement a solution using a model listener (in the onBefore methods, ensure the column has a valid FK value, throw an exception if it does not).
thumbnail
Priyanka Dhingra, modificado hace 11 años.

RE: Service Builder: foriegn key, not null constraint

Liferay Master Mensajes: 501 Fecha de incorporación: 20/12/11 Mensajes recientes
Thanks for the solution David. I'll follow it...
I am new to Database emoticon
theres some dilemma related to this that what is the following code representing...is it something related to foriegn key reference
<column name="tterminal_id" type="Collection" mapping-key="tswitch_id" entity="tswitch" />
thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: Service Builder: foriegn key, not null constraint

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
@Priyanka :
Hope this Blog may help you to understand !! Click Here
thumbnail
Priyanka Dhingra, modificado hace 11 años.

RE: Service Builder: foriegn key, not null constraint

Liferay Master Mensajes: 501 Fecha de incorporación: 20/12/11 Mensajes recientes
So does that mean-"Liferay defines the FK relationships for us"??????????????
thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: Service Builder: foriegn key, not null constraint

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
If you check the database, there really isn't any FK created. service.xml just defines specifies "relationships". If you studied service modelling in service oriented architecture, this is how it is suppose to be to make service autonomous.