问答详情
源自:4-1 页面创建-Struts2整合Spring

web.xml配置问题?和404The requested resource is not available.

web.xml跟老师讲的一样,jar包检查无误,但是就是发布后,在网页上无法访问工程,但是如果注释掉web。xml的配置后又能正常访问了,求大神指点!!

<!-- 配置Spring框架的核心监听器 -->

  <!--  <listener>

  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

  </listener> -->

  

 <!--  <context-param>

  <param-name>contextConfigLoaction</param-name>

  <param-value>classpath:applicationContext.xml</param-value>

  </context-param>  -->

  

  <!-- 配置Struts2框架的核心过滤器 -->

   <!-- <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>  --


提问者:Mark_G 2017-01-08 16:17

个回答