Hi,
I'm searching for a possibility to find out the
(XML)-node-names of properties at runtime. So if I have mapped a class e.g. with the following mapping:
Code:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="excercise.hibernate.xml.entities">
<class name="SuperHero">
<id name="id" column="SUPERHERO_ID" node="@id">
<generator class="native" />
</id>
<property name="name" node="superName"/>
<property name="numberOfArms" />
<property name="canFly" type="yes_no" node="@canFly" />
</class>
</hibernate-mapping>
how can I find out, that 'superName' is the node name of the 'name' property?
I think accessing a list of
PersistentClasses could help me here, but I don't see how to get that. I am searching for a 'generic' method, that works for Configuration-based (hibernate.cfg.xml) environments and also for JNDI / JMX based environments.
The reason for searching that information is that I wan't to build an XML-Schema from the information at runtime.
Greetings
Daniel