Hello!
I have the following configuration file:
<?xml version='1.0' encoding='utf-8'?>
<hibernate-configuration>
<!-- a SessionFactory instance listed as /jndi/name -->
<session-factory>
<!-- properties -->
<property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property>
<property name="show_sql">true</property>
<property name="use_outer_join">true</property>
<!-- mapping files -->
<mapping resource="info/collide/model/hibernate/User.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Document.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Course.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Ugroup.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Language.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Palette.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Project.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Theme.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/Activity.hbm.xml"/>
<mapping resource="info/collide/model/hibernate/TimeInterval.hbm.xml"/>
</session-factory>
</hibernate-configuration>
In hibernate 2.0 it worked ok. But in hibernate 2.1 I get Exception:problem parsing configuration/hibernate.cfg.xml
If somebody knows what it wrong, could you, please, tell me?
Thank you in advance
|