带你快速上手Servlet
一、servlet与tomcat的关系
(1)tomcat是什么?
tomcat其实是web服务器和servlet容器的结合体
(2)什么是web服务器?
比如,我当前在杭州,你能否用自己的电脑访问我桌面上的一张图片?恐怕不行,我们太习惯通过url访问的一个网站、下载一部电影了。一个资源,如果没有url映射,那么外界几乎很难访问,而web服务器的作用说穿了就是:将某个主机上的资源映射为一个url供外界访问
二、什么是servlet
(1)什么是servlet容器?
servlet是运行在web服务器或应用服务器上的程序。
servlet容器,顾名思义里面存着servlet对象,我们为什么能够通过web服务器映射的url访问资源?肯定需要写程序处理请求,主要3个过程:接受请求,处理请求,响应请求。
三、servlet的类结构
通过继承httpservlet实现servlet接口
一般在实际项目开发中,都是使用继承httpservlet类的方式去实现servlet程序
(1)编写一个类去继承httpservlet类
(2)根据业务需要重写doget或dopost方法
(3)到web.xml中的配置servlet程序的访问地址
四、servletconfig类
servletconfig代表的是当前servlet在web.xml中的配置信息
string getservletname(); ---获取当前servlet在web.xml中配置的名字 servletcontext getservletcontext();---获取当前servlet指定名称的初始化参数的值 string getinitparameter(string var1);---获取当前servlet所有初始化参数的名字组成的枚举 enumeration<string> getinitparameternames();---获取代表当前web应用的servletcontext对象
(1)作用:
1、可以获取servlet程序的别名servlet-name的值
2、获取初始化参数init-param
3、获取servletcontext对象
@override public void init(servletconfig servletconfig) throws servletexception { // 1、可以获取servlet程序的别名servlet-name的值 system.out.println(servletconfig.getservletname()); // 2、获取初始化参数init-param system.out.println(servletconfig.getinitparameter("username")); // 3、获取servletcontext对象 system.out.println(servletconfig.getservletcontext()); system.out.println("2、执行初始化方法"); }
五、servletcontext类
(1)什么是servletcontext?
1、servletcontext是一个接口,它表示servlet上下文对象。
2、一个web工程,只有一个servletcontext对象实例。
3、servletcontext是一个域对象。
4、servletcontext是在web工程部署启动的时候创建,在web工程停止的时候销毁。
什么是域对象?
域对象,是可以像map一样存取数据的对象,叫域对象。
这里的域指的是存取数据的操作范围,整个web工程。
存数据 取数据 删除数据
map put() get() remove()
域对象 setattribute() getattribute() removeattribute()
(2) servletcontext类的四个作用
1、获取web.xml中配置的上下文参数context-param
public class contextservlet extends httpservlet { protected void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { } protected void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { //1、 获取web.xml中配置上下文参数context-param servletcontext servletcontext = getservletconfig().getservletcontext(); string username = servletcontext.getinitparameter("username"); system.out.println("context-param参数的username"+username); } }
在web.xml中
<!-- context-param 是上下文参数(它是属于整个web工程)--> <context-param> <param-name>username</param-name> <param-value>context</param-value> </context-param>
2、获取当前的工程路径,格式:/工程路径
3、获取工程部署后在服务器硬盘上的绝对路径
(3)servletcontext像map一样存取数据
public class contextservlet1 extends httpservlet { protected void dopost(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { } protected void doget(httpservletrequest request, httpservletresponse response) throws servletexception, ioexception { //获取servletcontext对象 servletcontext context = getservletcontext(); system.out.println("保存之前:context1 获取key1的值是:"+context.getattribute("key1")); context.setattribute("key1","value1"); system.out.println("context1中获取域数据key1的值是:"+context.getattribute("key1")); } }
保存之前:context1 获取key1的值是:null context1中获取域数据key1的值是:value1 context2中获取域数据key1的值是:value1
六、servlet的生命周期
public class helloservlet implements servlet { public helloservlet() { system.out.println("1、执行构造器方法"); } @override public void init(servletconfig servletconfig) throws servletexception { system.out.println("2、执行初始化方法"); } @override public servletconfig getservletconfig() { return null; } //service方法是专门用来处理请求和响应的 @override public void service(servletrequest servletrequest, servletresponse servletresponse) throws servletexception, ioexception { system.out.println("3、hello servlet 被访问了"); } @override public string getservletinfo() { return null; } @override public void destroy() { system.out.println(" 4、执行销毁方法"); } }
执行的结果
1、执行构造器方法
2、执行初始化方法
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
3、hello servlet 被访问了
g:\softwareinstall\apache-tomcat-9.0.45\bin\catalina.bat stop
using catalina_base: "c:\users\administrator\appdata\local\jetbrains\intellijidea2020.1\tomcat\unnamed_servlet"
using catalina_home: "g:\softwareinstall\apache-tomcat-9.0.45"
using catalina_tmpdir: "g:\softwareinstall\apache-tomcat-9.0.45\temp"
using jre_home: "c:\program files\java\jdk1.8.0_60"
using classpath: "g:\softwareinstall\apache-tomcat-9.0.45\bin\bootstrap.jar;g:\softwareinstall\apache-tomcat-9.0.45\bin\tomcat-juli.jar"
using catalina_opts: ""
03-may-2021 14:33:11.909 淇℃伅 [main] org.apache.catalina.core.standardserver.await 閫氳繃鍏抽棴绔彛鎺ユ敹鍒版湁鏁堢殑鍏抽棴鍛戒护銆傛鍦ㄥ仠姝㈡湇鍔″櫒瀹炰緥銆�
03-may-2021 14:33:11.909 淇℃伅 [main] org.apache.coyote.abstractprotocol.pause 鏆傚仠protocolhandler["http-nio-8080"]
03-may-2021 14:33:12.289 淇℃伅 [main] org.apache.catalina.core.standardservice.stopinternal 姝e湪鍋滄鏈嶅姟[catalina]
4、执行销毁方法
(1)执行servlet构造器方法 (2) 执行init初始化方法
第一、二步,是在第一次访问的时候创建servlet程序会调用
(3)执行 service方法
第三步、每次访问都会调用
(4)执行destroy销毁方法
第四步:在web工程停止的时候调用
七、get、post
get、post请求都会走service方法,那么怎么区分get、post请求
//service方法是专门用来处理请求和响应的 @override public void service(servletrequest servletrequest, servletresponse servletresponse) throws servletexception, ioexception { system.out.println("3、hello servlet 被访问了"); httpservletrequest httpservletrequest=(httpservletrequest)servletrequest; string method = httpservletrequest.getmethod(); if ("get".equals(method)){ } if ("post".equals(method)){ } }
到此这篇关于带你快速上手servlet的文章就介绍到这了,更多相关servlet详解内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!