Hi, I'm reading the hibernate_tools.pdf Chp. 6 "Controlling POJO Code Generation".
I understand the use of the meta tag, etc, but I use the Eclipse plugin to generate both the hbm.xml files and the domain classes.
I'm not sure where I should put
Code:
<meta> </meta>
tags.
If I put them in SomeDomainClass.hbm.xml it gets overwritten when I use the plugin.
If I don't choose the hbm.xml exporter, and only choose the domain code generation exporter, and put meta tags in the SomeDomainClass.hbm.xml file...when I re-run, I don't see it take effect.
E.g. I added the following tag:
Code:
<class etc..>
<meta attribute="implements">SomeInterface</meta>
etc...
</class>
If I re-run, SomeDomainClass still does not implement SomeInterface.
I tried also adding it to Globals.hbm.xml that does not get generated by the Exporter, but still no luck?
How can I affect POJO generation with the Eclipse plugin?
Thx in advance,
Davis