Hi, folks

It looks like the order in which @hibernate.column and
@hibernate.formula tags appear gets changed in a generated file with
column moving to the top. For example,

@hibernate.many-to-one
@hibernate.formula value="CLIENT_ID"
@hibernate.formula value="CARRIER_ID"
@hibernate.column name="ACCOUNT_NO" length="32"

results in

<many-to-one name="account">
  <column name="ACCOUNT_NO" length="32"/>
  <formula>CLIENT_ID</formula>
  <formula>CARRIER_ID</formula>
</many-to-one>

which does not seem right and it does not work unless I manually
change order in .hbm-file. Did anyone come across this before? Are
there any known workarounds?


Stas


-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
_______________________________________________
xdoclet-plugins-interest mailing list
xdoclet-plugins-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-plugins-interest

Reply via email to