亚洲最大看欧美片,亚洲图揄拍自拍另类图片,欧美精品v国产精品v呦,日本在线精品视频免费

  • 站長資訊網(wǎng)
    最全最豐富的資訊網(wǎng)站

    Eclipse 添加 servlet 模板過程代碼

    Eclipse 添加 servlet 模板過程代碼

    先寫好一個(gè)servlet模板

    package com.exam.servlet;  import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse;  /**  * datatime: 2020年7月15日 下午9:04:18  * Servlet implementation class dddd  */ public class dddd extends HttpServlet { 	private static final long serialVersionUID = 1L;  	/** 	 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) 	 */ 	protected void doGet(HttpServletRequest request, HttpServletResponse response) 			throws ServletException, IOException { 		// TODO Auto-generated method stub 		response.setContentType("text/html;charset=utf-8"); 		request.setCharacterEncoding("utf-8"); 	}  	/** 	 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) 	 */ 	protected void doPost(HttpServletRequest request, HttpServletResponse response) 			throws ServletException, IOException { 		// TODO Auto-generated method stub 		doGet(request, response); 	} }

    2.添加到eclipse模板中

    Eclipse 添加 servlet 模板過程代碼
    Eclipse 添加 servlet 模板過程代碼
    Eclipse 添加 servlet 模板過程代碼

    再點(diǎn)擊ok

    應(yīng)用并關(guān)閉

    再打開的類中輸入servlet按alt+/

    就會(huì)輸出當(dāng)前的模板

    推薦教程:《Java教程》

    贊(0)
    分享到: 更多 (0)
    網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)