struts+spring
开发环境myeclipse8.5+tomcat6.0
求大神们指点
------解决方案--------------------classpath:
/applicationContext.xml加上/代表classPath的目录不加/就变成当前目录的也就是你web.xml所在的目录,因为你的web.xml是在WEB-INF下所以就报出/WEB-INF/applicationContext.xml不存在了
------解决方案--------------------<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext*.xml</param-value>
</context-param>
把listener写上面试试~ 我之前就这样写的。没问题~ classpath好着呢