Hi,
I am getting the following Parsing Exception when i try to run my code using Hibernate.
"The content of element type "class" must match "(meta*,(cache|jcs-cache)?,(id|composite-id),discriminator?,(version|timestamp)?,(property|many-to-one|one-to-one|component|dynamic-component|any|map|set|list|bag|idbag|array|primitive-array)*,(subclass*|joined-subclass*))"."
Could someone please give an insight on what the error might be. I think it has to do with something regarding my User.hbm.xml.
The Code is as follows.
===================================User.hbm.xml============================
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class name="User" table="loginInfo">
<property name="userName" column="user_name"/>
<property name="password" column="password"/>
<property name="accountNumber" column="account_number"/>
</class>
</hibernate-mapping>
==============================hibernate.cfg.xml============================
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<!-- Database connection settings -->
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.url">
jdbc:mysql://localhost/accountsDB</property>
<property name="connection.username">root</property>
<property name="connection.password">satyam</property>
<!-- JDBC connection pool (use the built-in) -->
<property name="connection.pool_size">2</property>
<!-- SQL dialect -->
<property name="dialect">net.sf.hibernate.dialect.MySQLDialect</property>
<!-- Echo all executed SQL to stdout -->
<property name="show_sql">true</property>
<!-- Drop and re-create the database schema on startup -->
<mapping resource="User.hbm.xml"/>
</session-factory>
</hibernate-configuration>
==================================== ================================
And i get my session factory object by doing...
sessionFactory = new Configuration().configure().buildSessionFactory();
Thanks & Regards,
Sunoo