我想在没有 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 但它不起作用。