為一個(gè)Java Web開發(fā)者,你一定了解和學(xué)習(xí)過(guò)Servlet?;蛟S還曾在面試中被問(wèn)到過(guò)Servelt是單例還是多例這個(gè)問(wèn)題。
遇到這個(gè)問(wèn)題,你是否曾深入了解過(guò),還是百度或者Google了一下,得到答案就OK了呢?
我們今天從Servlet規(guī)范及Tomcat源碼實(shí)現(xiàn)的角度,分析下這個(gè)問(wèn)題。
在Servlet規(guī)范中,對(duì)于Servlet單例與多例定義如下:
“Deployment Descriptor”, controls how the servlet container provides instances of the servlet.For a servlet not hosted in a distributed environment (the default), the servlet container must use only one instance per servlet declaration. However, for a servlet implementing the SingleThreadModel interface, the servlet container may instantiate multiple instances to handle a heavy request load and serialize requests to a particular instance.
上面規(guī)范提到,
如果一個(gè)Servlet沒(méi)有被部署在分布式的環(huán)境中,一般web.xml中聲明的一個(gè)Servlet只對(duì)應(yīng)一個(gè)實(shí)例。
而如果一個(gè)Servlet實(shí)現(xiàn)了SingleThreadModel接口,就會(huì)被初始化多個(gè)實(shí)例。實(shí)例有多少呢,這里沒(méi)細(xì)說(shuō)。
下面再?gòu)腡omcat的源碼中找尋下具體的參考實(shí)現(xiàn)是什么樣子的。以下代碼來(lái)源于Tomcat的StandardWrapper類。我把其中不太相關(guān)的部分做了刪除。
public Servlet allocate() throws ServletException {
boolean newInstance = false;
if (!singleThreadModel) {
// Load and initialize our instance if necessary
if (instance == null) {
synchronized (this) {
if (instance == null) {
try {
instance = loadServlet();
} catch (ServletException e) {}}}}
if (singleThreadModel) {
if (newInstance) {
synchronized (instancePool) {
instancePool.push(instance); //如果實(shí)現(xiàn)STM接口,就放到一個(gè)棧里
nInstances++;
}}
} else {
if (!newInstance) {
countAllocated.incrementAndGet();
}
return (instance);
}
}
synchronized (instancePool) {
while (countAllocated.get() >= nInstances) {
// Allocate a new instance if possible, or else wait
if (nInstances < maxInstances) {
try {
instancePool.push(loadServlet());
nInstances++;
} catch (ServletException e) {}
} else {
try {
instancePool.wait();
} catch (InterruptedException e) {
// Ignore
}} }
countAllocated.incrementAndGet();
return instancePool.pop();
}}
/**
* Load and initialize an instance of this servlet, if there is not already
* at least one initialized instance. This can be used, for example, to
* load servlets that are marked in the deployment descriptor to be loaded
* at server startup time.
*/
public synchronized Servlet loadServlet() throws ServletException {
// Nothing to do if we already have an instance or an instance pool
if (!singleThreadModel && (instance != null))
return instance; //注意此處,如果存在實(shí)例就直接返回
Servlet servlet;
try {
InstanceManager instanceManager = ((StandardContext)getParent()).getInstanceManager();
try {
servlet = (Servlet) instanceManager.newInstance(servletClass);
} catch (ClassCastException e) {
}
if (servlet instanceof SingleThreadModel) {
if (instancePool == null) {
instancePool = new Stack<>();
} //此處,使用Stack存放STM的Servlet
singleThreadModel = true;
}
initServlet(servlet);
} finally {
}
return servlet;
}
那一個(gè)實(shí)現(xiàn)了SingleThreadModel接口的Servlet,一般會(huì)初始化多少個(gè)實(shí)例呢?
StandardWrapper類中有兩個(gè)屬性,其中maxInstance初始為20。所以上面的問(wèn)題就有了答案。
/**
* Does this servlet implement the SingleThreadModel interface?
*/
protected volatile boolean singleThreadModel = false;
/**
* Maximum number of STM instances.
*/
protected int maxInstances = 20;
由于SingleThreadModel已經(jīng)聲明為廢棄,官方不建議使用。我們這里只是讓大家了解下。
總結(jié)下,一個(gè)Servlet究竟有幾個(gè)實(shí)例呢?受如下幾個(gè)原因影響:
是否在分布式環(huán)境中部署
是否實(shí)現(xiàn)SingleThreadModel,如果實(shí)現(xiàn)則最多會(huì)創(chuàng)建20個(gè)實(shí)例
在web.xml中聲明了幾次,即使同一個(gè)Servlet,如果聲明多次,也會(huì)生成多個(gè)實(shí)例。