因為在實現(xiàn)登陸驗證的時候羞酗,需要進行跳轉(zhuǎn)瘤缩,所以對servlet的三種跳轉(zhuǎn)方式又進行了學習
跳轉(zhuǎn)方式之一:forward跳轉(zhuǎn)
forward跳轉(zhuǎn)需要有RequestDispatcher對象,RequestDispatcher對象可以通過HttpServletRequest對象獲得
通過RequestDispatcher對象牢硅,不僅可以跳轉(zhuǎn)到j(luò)sp蹬耘、另外一個servlet,還可以是其他文件减余,比如web.xml综苔,不過這種方式好像使用場景比較少
舉個例子:ForwardServlet.java
/**
* @author hetiantian
*
* @author hetiantian
* @version 2017/12/26.
*/
public class ForwardServlet extends HttpServlet {
private RequestDispatcher dispatcher = null;
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String destination = request.getParameter("destination");
//跳轉(zhuǎn)到另外一個文件
if ("file".equals(destination)) {
dispatcher = request.getRequestDispatcher("/WEB-INF/web.xml");
dispatcher.forward(request, response);
} else if ("jsp".equals(destination)) { //跳轉(zhuǎn)到j(luò)sp頁面
//通過設(shè)置request的屬性值,傳遞一個Date對象給jsp頁面
request.setAttribute("date", new Date());
//調(diào)換到forward.jsp頁面
dispatcher = request.getRequestDispatcher("/forward.jsp");
dispatcher.forward(request, response);
} else if ("servlet".equals(destination)) { //跳轉(zhuǎn)到另外一個servlet文件中
dispatcher = request.getRequestDispatcher("/login");
dispatcher.forward(request, response);
} else {
response.setCharacterEncoding("gbk");
response.getWriter().println("缺少參數(shù)位岔。用法:" + request.getRequestURL() +
"?destination=jsp或者file或者servlet");
}
}
}
里面列舉了三種跳轉(zhuǎn)方式
注:getRequestDispatcher()方法的參數(shù)必須以"/"開始
跳轉(zhuǎn)到其他servlet休里,getRequestDispatcher()參數(shù)為servlet的映射url,這里即為/login
當使用forward形式跳轉(zhuǎn)servlet時,地址欄會顯示跳轉(zhuǎn)前的servlet訪問地址赃承,因為該跳轉(zhuǎn)是在服務(wù)器實現(xiàn)的妙黍,客戶端不知道該跳轉(zhuǎn)方式
可以看到,地址欄跳轉(zhuǎn)后沒有發(fā)現(xiàn)變化瞧剖,這個跳轉(zhuǎn)對客戶端是透明的拭嫁,這也是forward跳轉(zhuǎn)方式和其他跳轉(zhuǎn)方式的不同點
跳轉(zhuǎn)方式之二:redirect
通過HttpServletResponse的sendRedirection就能實現(xiàn)重定向
前面我們實現(xiàn)的登陸驗證就是通過這種方式實現(xiàn)的,這里就不在舉例子了抓于。
說明一點:當使用redirect跳轉(zhuǎn)方式時做粤,跳轉(zhuǎn)是在客戶端實現(xiàn)的,地址欄會發(fā)生變化捉撮。并且客戶端請求了兩次服務(wù)器怕品,第一次獲得重定向狀態(tài)碼和重定向地址,第二次訪問真實地址
可以看到地址欄的地址已經(jīng)發(fā)生了變化
跳轉(zhuǎn)方式之三:refresh
自動刷新可以實現(xiàn)在一段時間之后跳轉(zhuǎn)到另外一個頁面巾遭,還可以實現(xiàn)一段時間之后自動刷新此頁面肉康。通過HttpServletResponse的setHeader方法實現(xiàn)
舉個例子:RefreshServlet.java
/**
* refresh跳轉(zhuǎn)方式
*
* @author hetiantian
* @version 2017/12/26.
*/
public class RefreshServlet extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.setHeader("Refresh", "1000;URL=http://localhost:8080/login.html");
}
}
目前還沒有想到好的例子,試著寫了一個例子然而出現(xiàn)一點bug灼舍,在思考一下,morethink