Fórum

Service Builder: foriegn key, not null constraint

thumbnail
Priyanka Dhingra, modificado 11 Anos atrás.

Service Builder: foriegn key, not null constraint

Liferay Master Postagens: 501 Data de Entrada: 20/12/11 Postagens Recentes
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 11 Anos atrás.

RE: Service Builder: foriegn key, not null constraint

Liferay Legend Postagens: 14914 Data de Entrada: 02/09/06 Postagens Recentes
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 11 Anos atrás.

RE: Service Builder: foriegn key, not null constraint

Liferay Master Postagens: 501 Data de Entrada: 20/12/11 Postagens Recentes
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 11 Anos atrás.

RE: Service Builder: foriegn key, not null constraint

Regular Member Postagens: 234 Data de Entrada: 13/03/12 Postagens Recentes
@Priyanka :
Hope this Blog may help you to understand !! Click Here
thumbnail
Priyanka Dhingra, modificado 11 Anos atrás.

RE: Service Builder: foriegn key, not null constraint

Liferay Master Postagens: 501 Data de Entrada: 20/12/11 Postagens Recentes
So does that mean-"Liferay defines the FK relationships for us"??????????????
thumbnail
Subhash Pavuskar, modificado 11 Anos atrás.

RE: Service Builder: foriegn key, not null constraint

Regular Member Postagens: 234 Data de Entrada: 13/03/12 Postagens Recentes
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.