在hibernate.cfg.xml文件中,您是否可以在同一会话工厂中同时使用映射资源和映射类?

时间:2013-05-10 09:25:48

标签: java hibernate junit

我正在整理一个系统,该系统完成将hibernate POJO持久化到数据库的基本工作。在hbm.xml文件生成较旧的POJO的时刻,我们已经有了一些遗留系统,但新的POJO只是带注释的类。

这是我的hibernate.cfg.xml文件

<?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 name="">
        <!-- Database connection settings HSQL DB -->
        <property name="connection.driver_class">org.hsqldb.jdbcDriver</property>
        <property name="connection.url">jdbc:hsqldb:mem:test</property>
        <property name="connection.username">sa</property>
        <property name="connection.password" />
        <property name="dialect">org.hibernate.dialect.HSQLDialect</property>
        <property name="hbm2ddl.auto">create-drop</property>
        <property name="show_sql">true</property>
        <property name="show_comments">true</property>
        <property name="hibernate.connection.pool_size">0</property>
        <mapping resource="com/dto/Address.hbm.xml" />
        <mapping class="com.dto.Customer"/>
    </session-factory>
</hibernate-configuration>

这是可以的,除非是时候进行单元测试,看来在cfg.xml文件中同时拥有资源和类映射似乎在构建时打破了单元测试。

    <mapping resource="com/dto/Address.hbm.xml" />
    <mapping class="com.dto.Customer"/>

有没有办法解决这个问题?我甚至可以在hibernate.cfg.xml文件中使用2种不同的映射类型吗?

0 个答案:

没有答案