在spring中加入hibernate后页面404

阳光丶不锈 2012-08-08

                              在配置好的spring2.5中加入hibernate3.2时出现404错误

<!--

    <property name="mappingResources">

<list><value>com/po/TUser.hbm.xml</value></list>

    </property>

-->当spring的applicationContext.xml中出现上述代码则页面均出现下述404错误,相反注释后重新编译即出正常页面。

 HTTP Status 404 -

--------------------------------------------------------------------------------

type Status report

message

description The requested resource () is not available.

--------------------------------------------------------------------------------

Apache Tomcat/5.5.28

解决办法:

在applicationContext.xml中的<beans>头里面加入default-autowire="byName"default-lazy-init="true"后,重新编译即出现正常页面。

相关推荐