掲示板

Service Builder: foriegn key, not null constraint

thumbnail
11年前 に Priyanka Dhingra によって更新されました。

Service Builder: foriegn key, not null constraint

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
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
11年前 に David H Nebinger によって更新されました。

RE: Service Builder: foriegn key, not null constraint

Liferay Legend 投稿: 14919 参加年月日: 06/09/02 最新の投稿
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
11年前 に Priyanka Dhingra によって更新されました。

RE: Service Builder: foriegn key, not null constraint

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
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
11年前 に Subhash Pavuskar によって更新されました。

RE: Service Builder: foriegn key, not null constraint

Regular Member 投稿: 234 参加年月日: 12/03/13 最新の投稿
@Priyanka :
Hope this Blog may help you to understand !! Click Here
thumbnail
11年前 に Priyanka Dhingra によって更新されました。

RE: Service Builder: foriegn key, not null constraint

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
So does that mean-"Liferay defines the FK relationships for us"??????????????
thumbnail
11年前 に Subhash Pavuskar によって更新されました。

RE: Service Builder: foriegn key, not null constraint

Regular Member 投稿: 234 参加年月日: 12/03/13 最新の投稿
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.