zoukankan      html  css  js  c++  java
  • 关于映射异常org.hibernate.MappingException: An association from the table DUTY_INFO refers to an unmapped class: com.pms.entities.other.Department的原因。

    在编程过程当中由于修改过了包名。

    原来的包名是: com.pms.entities.base

    然后改为了:com.pms.entities.other

    当我重新映射生成数据表的时候就报错:org.hibernate.MappingException: An association from the table DUTY_INFO refers to an unmapped class: com.pms.entities.other.Department

    我明明已经修改过了类对应的映射文件,而且准确无误。一直找不到原因。

    最后发现是,IOC容器中的配置没有改。

    原来的配置如下。

    <!-- 配置SessionFactory -->
        <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
            <property name="dataSource" ref="dataSource"></property>
            <property name="configLocation" value="classpath:hibernate.cfg.xml"></property>
            <property name="mappingLocations" >
                <list>
                    <value>classpath:com/pms/entities/base/*.hbm.xml</value>           <!-- 这里原来的包名应该也要改,这里只要改成other就好了。 -->
                    <value>classpath:com/pms/entities/personnelManagement/*.hbm.xml</value>
                    <value>classpath:com/pms/entities/treatmentManagement/*.hbm.xml</value>
                </list>
            </property>
        </bean>
  • 相关阅读:
    [BZOJ] 3191 [JLOI2013]卡牌游戏
    [LUOGU] P1466 集合 Subset Sums
    [LUOGU] P1113 杂物
    [BZOJ] 1003 [ZJOI2006]物流运输
    poj 2479 最大连续子段和
    C#学习第九弹之委托
    C#学习第八弹之线程基础理解
    C#学习第七弹之WPF
    hdu 2030 汉字的编码方式
    hdu 1559 暴力
  • 原文地址:https://www.cnblogs.com/GooPolaris/p/7919066.html
Copyright © 2011-2022 走看看