当前位置: 代码迷 >> Web前端 >> 在webx.ml中 配置struts2 后 welcome-file-list 失效的解决方法
  详细解决方案

在webx.ml中 配置struts2 后 welcome-file-list 失效的解决方法

热度:839   发布时间:2013-09-13 21:12:00.0
在webx.ml中 配置struts2 后 welcome-file-list 失效的解决办法

struts2

<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>*.action</url-pattern>
	</filter-mapping>
	<filter-mapping>
		<filter-name>struts2</filter-name>
		<url-pattern>*.jsp</url-pattern>
	</filter-mapping>

welcome-file-list

  <welcome-file-list>
		<welcome-file>index.jsp</welcome-file>
	</welcome-file-list>

index.jsp

<%--<jsp:forward page="${pageContext.request.contextPath}/index-init.action" />
--%>
<meta http-equiv='refresh'  content='0;url=${pageContext.request.contextPath}/index-init.action'>

在jsp文件中的两种方式选一即可

  相关解决方案