整合SSH三大框架遇到的问题,希望能有同道加QQ经常交流学习
发布网友
发布时间:2023-07-11 23:46
我来回答
共2个回答
热心网友
时间:2024-12-05 18:22
这个意思是找不到spring的配置文件,在web.xml中配置一下你的文件的地方就行了。
用listener
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>WEB-INF/:applicationContext.xml,</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
顺便多告诉你一些整合的时候为了让struts知道spring要在struts.xml中配置<constant name="struts.objectFactory" value="org.apache.struts2.spring.StrutsSpringObjectFactory" />当然这个包你必需要有,为了让Hibernate能用上spring,必须要在Actioncontext中配置Hibernate的事务管理
热心网友
时间:2024-12-05 18:22
spring配置文件有问题,看看是不是哪里写错了