Hello everybody,
I've a small problem and I hope someone can help me. The problem is in a small demo application JEE which will be deployed on a weblogic 10.3.4 application server.
My problem is that everytime I deploy the demo application, the
Code:
[org.hibernate.ejb.packaging.AbstractJarVisitor] - Searching mapped entities in jar/par: file:/D:/Workspaceses/HibernateDeploymentIssue/Hibernate1/build/classes/
will be processed and all classes will be filtered
So how can I change the hibernate configuration that only the classes mentiont in the persistence.xml file will be mapped and all other classes will be ignored by hibernate.
I've alredy tried
Code:
<exclude-unlisted-classes>true</exclude-unlisted-classes>
and
Code:
<properties>
<property name="hibernate.archive.autodetection" value="hbm" />
<property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect" />
<property name="hibernate.transaction.manager_lookup_class"
value="org.hibernate.transaction.WeblogicTransactionManagerLookup" />
<property name="hibernate.show_sql" value="false" />
</properties>
but I still get the entries in the log file.
Thanks for your help or some tipps.
Regards Daniel