码迷,mamicode.com
首页 > 其他好文 > 详细

Servlet学习笔记

时间:2016-03-30 22:19:14      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:

Servlet开发步骤


  1. 继承HttpServlet
  2. 重写doGet和doPost方法
  3. 在web.xml注册servlet(servlet3.0中不需要注册,,选择新建servlet时,系统自动直接使用@webservlet注解)
    技术分享

重写doGet()与doPost()注意事项

  • super.doGet(req, resp);需注释掉(这是调用了父类的方法)
  • 使用PrintWriter时,需用resp.setContentType("text/html;charset=utf-8");//设置显示方式及编码

Servlet与JSP九大内置对象

JSP对象 Servlet中怎样获得
out resp.getWriter
request req参数
response resp参数
session req.getSession()函数
application getServletContext()函数
exception Throwable
page this
pageContext pageContext
Config getServletConfig()函数

Java后台处理form表单提交的复选框数据(字符串数组)

String[] favorites;
favorites = request.getParameterValues("favorite");





Servlet学习笔记

标签:

原文地址:http://www.cnblogs.com/Val1ant/p/5338900.html

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