码迷,mamicode.com
首页 > Web开发 > 详细

servlet3.0以后无需在web.xml中配置servlet

时间:2017-04-15 19:10:32      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:htm   text   UI   ted   protected   let   exce   upload   public   

//下面这句话代替了web.xml中对servlet的配置
@WebServlet("/Upload")

public class Upload extends HttpServlet {
	private static final long serialVersionUID = 1L;

	protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		
		doPost(request, response);
	}

	protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
		//该段是用servlet输出页面
		response.setContentType("text/html;charset=GBK");
		PrintWriter out = response.getWriter();
		out.println("<HTML>");
		out.println("<HEAD><TITLE>firstse</TITLE></HEAD>");
		out.println("<BODY>");
		out.print("这是servlet");
		out.println("</BODY>");
		out.println("</HTML>");

			}

}

 

servlet3.0以后无需在web.xml中配置servlet

标签:htm   text   UI   ted   protected   let   exce   upload   public   

原文地址:http://www.cnblogs.com/niuni-623/p/6715139.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!