SpringなしでHiberanteを使用したいのですが、packagesToScanで問題が発生しています...Hibernateがエンティティを見つけることができません。私はtomcat7を使用しています。
これは私の構成です:
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost/ccc</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.default_schema">ccc</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="packagesToScan">com.ccc.db.entity</property>
</session-factory>
</hibernate-configuration>
クラスをビルドフォルダーからWebContent/WEB-INF / classesに移動しようとしましたが、機能しません。