码迷,mamicode.com
首页 > Web开发 > 详细

web.xml中welcome-file-list的作用

时间:2016-12-25 13:57:20      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:lan   html   没有   pre   set   启动   nal   java   部署   

今天尝试使用struts2+ urlrewrite+sitemesh部署项目,结果发现welcome-file-list中定义的欢迎页不起作用:

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

启动服务器后,直接输入http://localhost:8080/project 终是报404错误,初步猜测是由于没有找到index.jsp这个文件造成的,于是在web-root下新建一个空白的index.jsp;重新启动之后成功显示,但是由于welcome-file中不能直接写action,所以对index.jsp进行改造:

 

<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>  
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<jsp:forward page="/index.html" />


这样就达到了只输入项目名就可访问的目的: 直接输入 http://localhost:8080/ project 

 

原文连接:web.xml中的welcome-file-list不起作用

web.xml中welcome-file-list的作用

标签:lan   html   没有   pre   set   启动   nal   java   部署   

原文地址:http://www.cnblogs.com/HDK2016/p/6219294.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!