web.xml1加配置信息就运行项目就提示网页不存在或空白页

web.xml一加配置信息就运行项目就提示网页不存在或空白页
如下是我的配置文件:(我删掉配置信息就可以正常进入index.jsp)
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>


   <!-- 加载spring的配置文件 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 配置spring配置文件加载的位置 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>


<!-- 配置struts2 -->[code=javascript][code=javascript]
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

</web-app>
------解决思路----------------------
虽然我不清楚你的报错是什么,但是我的建议:
1、查看你的struts、spring的架包是否正确导入
2、spring的配置是否正确(包括配标签顺序)
希望对你有所帮助。
------解决思路----------------------
404? 是找不到action还是找不到jsp页面
------解决思路----------------------
你是基于什么框架做的?SSH框架的applicatiocontext.xml文件的有没有注入,大部分错误都是你的service或action没有在这里注入
------解决思路----------------------
检查spring和struts的配置文件