i want to try to generate artifacts of an oracle database with one table consisting of two colums with one entry in it.
when i do the artifact generation in eclipse via "file->new->other->artifact generation" in only get the file "GeneralHbmSettings.hbm.xml" generated. nothing more...
Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
3.0.5, tools: version that come with jbosside 1.5m1
Mapping documents:
Code:
<?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>
<property name="hibernate.connection.url">jdbc:oracle:thin:@amsdb01:1521:orc1</property>
<property name="hibernate.cglib.use_reflection_optimizer">true</property>
<property name="hibernate.connection.password">meip</property>
<property name="hibernate.connection.username">meip</property>
<property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<property name="hibernate.dialect">org.hibernate.dialect.OracleDialect</property>
<property name="hibernate.default_schema">meip</property>
</session-factory>
</hibernate-configuration>
the others should be generated via artifact generation
Code between sessionFactory.openSession() and session.close():
none
Full stack trace of any exception that occurs:
there's no exception in the error log, it just says nothing
Name and version of the database you are using:
oracle9
my software configuration:
elipse 3.1m5a
jbosside 1.5m1
ejb3.0preview5
jdk5
oracle9 (jdbc driver 9.2.0.5)