配置欢迎页面

来源:互联网 发布:商品价格比较软件 编辑:程序博客网 时间:2024/05/29 03:59

首先,web.xml中是这么写的。

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

然后是index.jsp

<%@ page language="java" contentType="text/html; charset=GB18030"    pageEncoding="GB18030"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=GB18030"><title>Insert title here</title></head><body onload="javascript:window.location='message/main2.do';"></body></html>

这样就可以通过index.jsp直接定位到main2.do的游客通道动态主页。

0 0
原创粉丝点击