0

我正在使用引用项目中的类作为休眠项目的映射 - 我可以在 Java 代码中使用这些类,但不能引用休眠配置文件中的类。我明白了WARN: HHH000183: no persistent classes found for query class

所以在我使用的休眠映射配置文件中:

...

<mapping package="com.me.my.proj.oracle"/>
<mapping class="com.me.my.proj.oracle.WDI_HBD_PSNG_SMRY"/>
</session-factory> ###end of hibernate config file###

是否可以使用 hibernate 在参考项目中引用一个类?

4

1 回答 1

1

您引用的项目 (Java) 将作为JAR文件添加到当前项目的类路径中。我认为您需要使用mappingJarLocationwith location 作为您的ReferenceProjectName.jar.

    <property name="mappingJarLocations" value="file:**/ReferenceProjectName.jar"/>
于 2012-11-14T22:50:16.763 回答