标签:调用 编码 多线程 post 资源 map 设置 cat class
1.tomcat接受客户端的请求,去web.xml解析URL路径,访问Servlet的资源路径
5.调用方法 service()
1.init——执行init方法,只执行一次
init方法与<load-on-startup>1</load-on-startup>有关
默认load-on-startup是负数(默认是负数),那么第一次访问时进行加载。
如果是设置了正数,按照级别进行加载,越小优先级越高
2.service——每次访问的时候
3.destroy——被销毁时(服务器关闭的时候)
Servlet只有一个对象。在多线程下,可能会有线程安全问题。
不能加锁,如果加锁,性能影响太大了。
所以,尽量不要在servlet中定义成员变量,即可避免线程安全问题。
Web-xml配置:
<servlet>
<servlet-name>servlet-demo</servlet-name>
<servlet-class>cn.steveyu.web.sevlet.ServletDemo</servlet-class>
<load-on-startup>3</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>servlet-demo</servlet-name>
<url-pattern>/demo</url-pattern>
</servlet-mapping>
JavaEE 6开始,有Servlet 3.0
@WebServlet(urlPatterns = "/demo10")
或者
@WebServlet("/demo10")
1.get请求
new String (name.getBytes("iso-8859-1"),"utf-8")
server.xml 中添加 URIEncoding = "utf-8"
2.post请求
request.setCharacterEncoding("utf-8")
转发
request.getRequestDispatcher("page").forward(req, resp)
重定向
基于刷新会重复请求
response.sendRedirect("page")
request
session
Application
this.getServletContext()
- context.getAttribute
- context.setAttribute
<context-param>
<param-name>hhh</param-name>
<param-value>111</param-value>
</context-param>
- context.getInitParam("hhh") // web.xml的context-parm的值
- context.getRealPath("web.xml") //获取web.xml的绝对路径
- context.getContextPath() //获取web项目上下文路径
<init-param>
<param-name>xx</param-name>
<param-value>11</param-value>
</init-param>
ServletConfig config = this.getServletConfig()
config.getParameter("xx")
标签:调用 编码 多线程 post 资源 map 设置 cat class
原文地址:https://www.cnblogs.com/littlepage/p/12231061.html