jsp页面转发 jsp客户端重定向 spring设置首页
- 2016-10-22 22:01:00
- admin
- 原创 2245
一、jsp页面转发
<jsp:forward page="test_get.do?name=feinen"></jsp:forward>
二、jsp页面重定向
方法1:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<c:redirect url="test_get.do?name=feinen"/>
方法2:
<%
response.sendRedirect("test_get.do?name=feinen");
%>
三、spring设置首页
注意事项:不能直接在welcome-file里面写static/index.html,因为没办法找到index.html的依赖。
编辑web.xml
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
编辑index.jsp
<%
response.sendRedirect("static/index.html");
%>