红颜莎娜
web.xml中配置<welcome-file-list> <welcome-file>redirect.jsp</welcome-file> </welcome-file-list>redirect.jsp中如下配置<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" isELIgnored="false"%><% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/"; response.sendRedirect(basePath+action);%>action为你要跳转的action