-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 
Author Message
 Post subject: Accessing info about XML / DOM4J node names at runtime
PostPosted: Fri Jun 29, 2007 8:11 am 
Newbie

Joined: Fri Jun 29, 2007 7:57 am
Posts: 1
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


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 1 post ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.