论坛首页 入门技术论坛

spring 问题,希望大家帮看下.

浏览 2610 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2007-06-18  
Error creating bean with name 'MySessionFactory' defined in file [D:\work\MyWeb\WEB-INF\src\applicationContext.xml]: Invocation of init method failed; nested exception is org.hibernate.InvalidMappingException: Could not parse mapping document from input stream
这是hibernate的培植文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >

<hibernate-mapping package="po">
    <class name="Tmobiles" table="TMOBILES" >
        <id name="mobileNumber" type="java.lang.String">
            <column name="MOBILE_NUMBER" length="11" />
            <generator class="assigned" />
        </id>
        <property name="mobileType" type="java.lang.String">
            <column name="MOBILE_TYPE" length="20" />
        </property>
        <property name="cardNumber" type="java.lang.String">
            <column name="CARD_NUMBER" length="20" />
        </property>
        <property name="isAvailable" type="java.lang.String">
            <column name="IS_AVAILABLE" length="20" />
        </property>
        <set name="tusers" inverse="true">
            <key>
                <column name="MOBILE_NUMBER" length="11" />
            </key>
            <one-to-many class="po.Tuser" />
        </set>
    </class>
</hibernate-mapping>

spring 的配置文件
<bean id="MySessionFactory"
class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource">
<ref bean="MyData" />
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.Oracle9Dialect
</prop>
</props>
</property>
<property name="mappingResources">
<list>
<value>po/Tcharge.hbm.xml</value>
<value>po/TchargeRule.hbm.xml</value>
<value>po/Tcustomer.hbm.xml</value>
<value>po/Tmobiles.hbm.xml</value>
<value>po/Toperator.hbm.xml</value>
<value>po/Tuser.hbm.xml</value>
</list>
</property>
</bean>
为什么 会出现那个错误呢?错在哪了呢?搞不明白,大家给点意见也好!
   发表时间:2007-06-19  
我去,浏览的人挺多,没人回答!晕哦!
自己解决了.在hibernate的配置文件 格式有问题,所以在读取的时候,他会提示出错.
0 请登录后投票
   发表时间:2007-07-24  
如何解决的呀,我也遇到同样的问题?
0 请登录后投票
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics