get this error always! I don't understand why.
this is my hibernate.cfg.xml
<hibernate-configuration>
<session-factory name="session1">
<property
name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property
name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property
name="hibernate.connection.url">jdbc:mysql://localhost:3306/mydb</property>
<property name="hibernate.connection.username">root</property>
<property
name="hibernate.current_session_context_class">org.hibernate.context.ThreadLocalSessionContext</property>
<mapping resource="org/omikron/test/data/Ticket.hbm.xml"/>
<mapping resource="org/omikron/test/data/Testprocedure.hbm.xml"/>
<mapping resource="org/omikron/test/data/Tag.hbm.xml"/>
<mapping resource="org/omikron/test/data/Testentity.hbm.xml"/>
<mapping resource="org/omikron/test/data/Questionset.hbm.xml"/>
<mapping resource="org/omikron/test/data/Administrator.hbm.xml"/>
<mapping resource="org/omikron/test/data/Systemsetting.hbm.xml"/>
<mapping resource="org/omikron/test/data/Question.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Do you have an idea?
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]