原因是:hibernate配置文件里面没加载!!!!!


在配置文件中加上报错的entity的.hbm.xml的配置即可;

        加上classpath*:/mappings/*.hbm.xml 


        加之前


 

             

                classpath*:/com/ist/configure/management/vo/*.hbm.xml

            classpath*:/com/ist/hbm/*.hbm.xml  

            classpath*:/mappings/bcms/*.hbm.xml

            classpath*:/mappings/api/http/*.hbm.xml 

             

         


        加之后


 

             

                classpath*:/com/ist/configure/management/vo/*.hbm.xml

              classpath*:/com/ist/hbm/*.hbm.xml  

              classpath*:/mappings/bcms/*.hbm.xml

              classpath*:/mappings/api/http/*.hbm.xml 

              classpath*:/mappings/*.hbm.xml