我在创建web工程项目的时候,打开网页进行测试时,出现
The requested resource () is not available.错误。这个错误有时有,有时候又正常了。百思不得其解!!!
web.xml的配置如下:
<?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">
 <filter>
        <filter-name>struts2</filter-name>
        <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class>
   </filter>
   <filter-mapping>
       <filter-name>struts2</filter-name>
       <url-pattern>/*</url-pattern>
</filter-mapping>
<listener > 
<listener-class > 
org.springframework.web.context.ContextLoaderListener
</listener-class > 
</listener > 
<context-param>
<param-name>contextConfigLocation</param-name>
        <param-value>
            /WEB-INF/classes/applicationContext.xml
        </param-value>
</context-param>
</web-app>
请高手指点迷津!

解决方案 »

  1.   

    补充一下:
    如果WEb.xml
    修改成初始的代码:
    <?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>
    </web-app>就可以正常显示jsp页面了。
      

  2.   

    org.apache.struts2.dispatcher.FilterDispatcher
    org.springframework.web.context.ContextLoaderListener
    /WEB-INF/classes/applicationContext.xml确认这三个东西在不在
      

  3.   

    applicationContext.xml在web-inf下,另外几个怎么看?