The generated XML files
Finally, let us inspect the generated jboss.xml
, jbosscmp-jdbc.xml
and the ejb-jar.xml
.
In jboss.xml
we find:
<entity> <ejb-name>Bibliography</ejb-name> <jndi-name>BibliographyBean</jndi-name> <local-jndi-name>BibliographyLocal</local-jndi-name> </entity> <entity> <ejb-name>Article</ejb-name> <jndi-name>ArticleBean</jndi-name> <local-jndi-name>ArticleLocal</local-jndi-name> </entity> <session> <ejb-name>ArticleFacade</ejb-name> <jndi-name>ArticleFacadeBean</jndi-name> <local-jndi-name>ArticleFacadeLocal</local-jndi-name> <ejb-local-ref> <ejb-ref-name>ejb/BibliographyLocal</ejb-ref-name> <jndi-name>ejb/BibliographyLocal</jndi-name> </ejb-local-ref> </session>
We see the artcile facade bean having a reference to the BibliographyBean
only. The reference to the article data is now handled by the container!
As already mentioned in this post, I had to change the <ejb-ref>
to <ejb-local-ref>
.
The section related to the relation mapping in the jbosscmp-jcbc.xml
is as follows:
<relationships> <ejb-relation> <ejb-relation-name>bibliography-may-contain-article</ejb-relation-name> <foreign-key-mapping/> <ejb-relationship-role> <ejb-relationship-role-name>BibliographyToArticle</ejb-relationship-role-name> <key-fields> <key-field> <field-name>publicationID</field-name> <column-name>publication_id_fk</column-name> </key-field> </key-fields> </ejb-relationship-role> <ejb-relationship-role> <ejb-relationship-role-name>ArticleToBibliography</ejb-relationship-role-name> <key-fields/> </ejb-relationship-role> </ejb-relation> <!- To add jboss relationships for beans not managed by XDoclet, add a file to your XDoclet merge directory called jbosscmp-jdbc-relationships.xml that contains the <ejb-relation></ejb-relation> markups for those beans. -> </relationships>
Here we clearly discern the unidirectional character of our mapping, and the correspondence to our Xdoclet tag entries. Note that the “blind side” role name is required: if you leave out this element, or the corresponding target-role-name
field of the @ejb.relation
tag, the bean does not deploy! Moreover, the <key-fields>
section is empty on the “blind side”.
Finally, we’ll have a peek at the ejb-jar.xml
. A similar relation mapping section can be found there:
<!- Relationships -> <relationships > <ejb-relation > <ejb-relation-name>bibliography-may-contain-article</ejb-relation-name> <ejb-relationship-role > <ejb-relationship-role-name>BibliographyToArticle</ejb-relationship-role-name> <multiplicity>One</multiplicity> <cascade-delete/> <relationship-role-source > <ejb-name>Bibliography</ejb-name> </relationship-role-source> <cmr-field > <cmr-field-name>article</cmr-field-name> </cmr-field> </ejb-relationship-role> <ejb-relationship-role > <ejb-relationship-role-name>ArticleToBibliography</ejb-relationship-role-name> <multiplicity>One</multiplicity> <cascade-delete/> <relationship-role-source > <ejb-name>Article</ejb-name> </relationship-role-source> </ejb-relationship-role> </ejb-relation> <!- To add relationships for beans not managed by XDoclet, add a file to your XDoclet merge directory called relationships.xml that contains the <ejb-relation></ejb-relation> markups for those beans. -> </relationships>
We see the <relationship>
section containing our relationship, with our defined name, containing both the originating side and the “blind side”.
Did it and worked. In fact the CMR element -Container Managed Relations- is an obvious missing point. Do you know where I can get some good sources for CMR?
Thanks!
Hi everyone:
I would like to know if there’s possible to generate querys in the .java’s bean with xdoclect, something like Jboss IDE or hibernate. I must define relationships and create new querys and can’t do enything of that with my Lomboz Eclipse plugin and Jboss server.
I would be greateful at any kind of help
Regarding Comment 4, that’s because it’s after the “@jboss.target-relation” tag, which refers to the blind side of the relation. In the case which you mentioned, one would use the “@jboss.relation” tag, which makes it work from the other side.
It took me very long to figure this out…somehow most tutorials on the net use that kind of example with the CMR Relation on the blind side, which i personally find not very intuitive for a first example. When trying it with the tags on the side with the foreign key column this produces “unknown column in where query” exceptions.
I did it and it works correctly (after some hacks :o)).
Now i want to make tests around it. need i use cactus? is there another solution?
I dont want to kludge without another ejb. 🙁
Thank you
Breno Leitão.
http://lcr.icmc.usp.br
For anyone who searches for good example code:
Maybe you like to look at
http://xpetstore.sourceforge.net/
It is quite simple but has no bedirection m:n relationship.
I got it!!!!
“ss� and me have the following problem:
XDoclet generates an empty {field-name} and {column -name}.
Here is the reason for that behaviour:
We got the source via copy and paste from this website. This leads us to the following line:
The closing quotation mark is non ASCII! This confuses XDoclet. Just replace it with the correct one (“) and everything works properly.
Yours
Arne
This example is part of quite a large project in Eclipse, hence it is not possible to compose such a JAR instantly. However, I think it is a very good idea. Moreover, the statistics show that many people are struggling with these issues and are consulting my post.
Although I cannot promise to deliver the JAR file tomorrow, I’ll do my best to make it available soon. If so, I’ll make a new post, instead of changing this one. Of course, I’ll leave a comment referring to the new post.
If anyone else already has such a JAR file (preferrably based on my example) and is willing to share his/her efforts with the rest of the world, please let me know.
Regards,
It would be *very* nice if you can zip a complete working example (inclusive build.xml) and give it for download. Please.
Yours
Arne
Btw.: Your examplanations are very understandable.
I got the same problems as “ss” has.
It would be *very* nice if you can zip a complete working example (inclusive build.xml) and give it for download. >> Please < <
Yours
Arne
Btw.: Your examplanations are very understandable.
From your comment I cannot see what you find confusing. I did not post the database schema, since the intention was to let the container create the schema for me. But now that the schema has been created, I can post it, of course!
An article is created in the Hypersonic database with this SQL statement:
The PUBLICATION_ID_FK is primary key and foreign key at the same time for the article table. This is sound, since we are dealing with a one-to-one relationship here.
A bibliography is created with:
I hope this helped!
Looks like you may have things the wrong way around? Isn’t Table 2 actually referring to Table 1? Rather confusing. Also I find the Concrete example even more confusing! It would be better accompanied by a database schema to refer to.
Thanks a lot for the tutorial. however,
i used the following in my ant build script, but i had problems generating the <key -fields/> in jbosscmp-jdbc.xml.
And hence i had problems deploying my bean. It threw the following exception.
org.jboss.deployment.DeploymentException: Atleast one role of a foreign-key mapped relationship must have key fields (or <primkey -field> is missing from ejb-jar.xml): ejb-relation-name=FolderMayContainDevices
Can you please help.
the build.xml was as follows:
It was the first tutorial I found, which really helped me, to understand, how to make cmr with Xdoclet.
Thanks for it.
Janos
The promised follow-up is available here.