日期:2014-05-17  浏览次数:20643 次

急求助:org.hibernate.MappingException: Unknown entity:
异常错误如:org.hibernate.MappingException: Unknown entity: com.xdtech.platform.domain.model.user.xkq


求高手帮忙解决,。。是不是还有什么地方没有配置到哦!!!
我 的applicationContext.xml配置文件如下
XML code
<?xml version="1.0" encoding="GBK"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
    default-autowire="byName" default-lazy-init="false">
    <import resource="classpath:org/codehaus/xfire/spring/xfire.xml"/>
    <!-- 获得applicationContext中所有bean的JSR181 annotation -->
    <bean id="webAnnotations" class="org.codehaus.xfire.annotations.jsr181.Jsr181WebAnnotations"  lazy-init="false"/>
    <!-- 定义handler mapping,将所有JSR181定义的bean导出为web service -->
    <bean id="jsr181HandlerMapping" class="org.codehaus.xfire.spring.remoting.Jsr181HandlerMapping"  lazy-init="false">
      <property name="xfire" ref="xfire"/>
      <property name="webAnnotations" ref="webAnnotations"/>
    </bean>
     <bean class="com.xdtech.platform.core.service.SearchService" />
    <bean class="com.xdtech.platform.core.service.IndexDelete" />

    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
        <!-- MY SQL DATABACE CONNECTION-->
 
        <property name="driverClass" value="com.mysql.jdbc.Driver" />
 
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/cis?useUnicode=true&amp;characterEncoding=UTF-8" />
 
        <property name="user" value="root" />
        <property name="password" value="123" />
        <property name="maxIdleTime"><value>1800</value></property>
        <property name="acquireIncrement"><value>2</value></property>
        <property name="maxStatements"><value>0</value></property>
        <property name="initialPoolSize"><value>2</value></property>
        <property name="idleConnectionTestPeriod"><value>1800</value></property>
        <property name="acquireRetryAttempts"><value>30</value></property>
        <property name="testConnectionOnCheckout"><value>false</value></property>

    </bean>
    <!-- bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean"-->
    <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
        <property name="dataSource"><ref bean="dataSource" /></property>  
        <property name="hibernateProperties&qu