Đang chuẩn bị liên kết để tải về tài liệu:
Bài giảng Công nghệ Java: Bài 2.2 - Nguyễn Hữu Thể

Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG

Bài giảng Công nghệ Java - Bài 2.2: Servlet. Bài này cung cấp cho người học những nội dung kiến thức về: Servlet init, web.xml, annotation, forward, redirect. để biết thêm các nội dung chi tiết. | Bài giảng Công nghệ Java: Bài 2.2 - Nguyễn Hữu Thể CÔNG NGHỆ JAVA Nguyễn Hữu Thể Bài 2: Servlet 1 Nội dung ▪ Servlet init() ▪ web.xml ▪ Annotation ▪ Forward ▪ Redirect 2 Interface Servlet Method Description initializes the servlet. It is the life cycle method of servlet and public void init(ServletConfig config) invoked by the web container only once. provides response for the incoming public void service(ServletRequest request. It is invoked at each request,ServletResponse response) request by the web container. is invoked only once and indicates public void destroy() that servlet is being destroyed. public ServletConfig getServletConfig() returns the object of ServletConfig. returns information about servlet public String getServletInfo() such as writer, copyright, version etc. 3 package com.javatech.tutorial.servlet; public class InitParamServlet extends HttpServlet { VD: InitParamServlet.java private static final long serialVersionUID = 1L; + init(): Khởi tạo giá trị cho private String email; email public InitParamServlet() { } + doGet(): Khởi tạo giá trị cho @Override email2 public void init(ServletConfig config) throws ServletException { super.init(config); // Lấy giá trị của tham số khởi tạo. Cấu hình trong web.xml. this.email = config.getInitParameter("email1"); } @Override protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // Lấy giá trị của tham số khởi tạo theo một cách khác. String email2 = this.getServletConfig().getInitParameter("email2"); ServletOutputStream out = response.getOutputStream(); out.println(""); out.println(""); out.println("Init Param"); out.println("email1 = " + this.email + ""); out.println("email2 = " + email2 + ""); out.println(""); out.println(""); } 4 } .

Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.