hello2代碼的簡單分析
阿新 • • 發佈:2019-03-25
override ets str The contex name info @override resp //該對象被用作包裝位於特定路徑上的服務器資源或通過特定名稱給定的服務器資源的包裝器
if (dispatcher != null) {
dispatcher.include(request, response);
}
}
out.println("</body></html>");//判dispatcher這個對象的值是否為空,並返回輸出
}
}
hello2部分代碼:
String username = request.getParameter("username");//將get~這個方法賦給username這個對象
if (username != null && username.length() > 0) {
RequestDispatcher dispatcher =getServletContext().getRequestDispatcher("/response");//定義接收來自客戶端的請求並將它們發送到服務器上的任何資源的對象dispatcher
if (dispatcher != null) {
dispatcher.include(request, response);
}
}
out.println("</body></html>");//判dispatcher這個對象的值是否為空,並返回輸出
}
@Override// 偽代碼,表示重寫
public String getServletInfo() {
return "The Hello servlet says hello.";//返回hello最後的輸出
}
}
hello2代碼的簡單分析