一、这一章从头构建一个简单的Servlet容器,可以处理Servlet和静态资源(如html文件/图片等)。

要处理Servlet,必须遵循javax.servlet.Servlet规范,而处理静态资源同第一章。

关键是模仿tomcat的结构,来合理组织代码。

首先,servlet规范规定javax.servlet.Servlet接口有5个方法,签名如下:

public void init(ServletConfig config) throws ServletException 
public void service(ServletRequest request, ServletResponse response) throws ServletException, java.io.IOException
public void destroy()
public ServletConfig getServletConfig()
public java.lang.String getServletInfo()

其中,init,service,destroy为servlet生命周期方法。

这一章有两个示例Application。Application1和Application2。

二、Application1-UML图:

HttpServer1中有await方法,等待HTTP请求,对于每个请求创建Request和Response对象,并且分派到ServletProcess1或者StaticRequestProcessor(根据请求url)。

HttpServer1:

public class HttpServer1 {

	private boolean shutdown = false;

	public static void main(String[] args) {
new HttpServer1().await();
} public void await() {
ServerSocket serverSocket = null;
int port = 8080;
try {
serverSocket = new ServerSocket(port, 1, InetAddress
.getByName("localhost"));
} catch (UnknownHostException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
while (!shutdown) {
Socket socket = null;
InputStream inputStream = null;
OutputStream outputStream = null;
try {
socket = serverSocket.accept();
inputStream = socket.getInputStream();
outputStream = socket.getOutputStream();
//create request object
Request request = new Request(inputStream);
request.parse();
//create response object
Response response = new Response(outputStream);
response.setRequest(request);
//check if this is a request for a servlet or for a static resource
if(request.getUri().startsWith("/servlet/")) {
ServletProcessor1 servletProcessor1 = new ServletProcessor1();
servletProcessor1.process(request, response);
} else {
StaticResourceProcessor staticResourceProcessor = new StaticResourceProcessor();
staticResourceProcessor.process(request, response);
}
//close the socket
socket.close();
// check if the url is a shutdown command
shutdown = request.getUri().equals("SHUTDOWN");
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

HttpServer1主要是创建ServerSocket,绑定在8080端口,等待socket请求,并根据uri判断是静态资源请求还是请求servlet。

Request:

package ex02.pyrmont;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.Enumeration;
import java.util.Locale;
import java.util.Map; import javax.servlet.RequestDispatcher;
import javax.servlet.ServletInputStream;
import javax.servlet.ServletRequest; public class Request implements ServletRequest { private InputStream inputStream;
private String uri; public Request(InputStream inputStream) {
this.inputStream = inputStream;
} public void parse() {
// read a set of characters from the socket
StringBuffer request = new StringBuffer(2048);
byte[] buffer = new byte[2048];
int len = 0;
try {
len = inputStream.read(buffer);
} catch (IOException e) {
e.printStackTrace();
len = -1;
}
for(int j=0; j<len; j++) {
request.append((char)buffer[j]);
}
System.out.println(request.toString());
uri = praseUri(request.toString());
} private String praseUri(String string) {
int index1, index2;
index1 = string.indexOf(" ");
if(index1 != -1) {
index2 = string.indexOf(" ", index1 + 1);
if(index2 > index1) {
return string.substring(index1 + 1, index2);
}
}
return null;
} public String getUri() {
return uri;
} public Object getAttribute(String arg0) {
// TODO Auto-generated method stub
return null;
} public Enumeration getAttributeNames() {
// TODO Auto-generated method stub
return null;
} public String getCharacterEncoding() {
// TODO Auto-generated method stub
return null;
} public int getContentLength() {
// TODO Auto-generated method stub
return 0;
} public String getContentType() {
// TODO Auto-generated method stub
return null;
} public ServletInputStream getInputStream() throws IOException {
// TODO Auto-generated method stub
return null;
} public Locale getLocale() {
// TODO Auto-generated method stub
return null;
} public Enumeration getLocales() {
// TODO Auto-generated method stub
return null;
} public String getParameter(String arg0) {
// TODO Auto-generated method stub
return null;
} public Map getParameterMap() {
// TODO Auto-generated method stub
return null;
} public Enumeration getParameterNames() {
// TODO Auto-generated method stub
return null;
} public String[] getParameterValues(String arg0) {
// TODO Auto-generated method stub
return null;
} public String getProtocol() {
// TODO Auto-generated method stub
return null;
} public BufferedReader getReader() throws IOException {
// TODO Auto-generated method stub
return null;
} public String getRealPath(String arg0) {
// TODO Auto-generated method stub
return null;
} public String getRemoteAddr() {
// TODO Auto-generated method stub
return null;
} public String getRemoteHost() {
// TODO Auto-generated method stub
return null;
} public RequestDispatcher getRequestDispatcher(String arg0) {
// TODO Auto-generated method stub
return null;
} public String getScheme() {
// TODO Auto-generated method stub
return null;
} public String getServerName() {
// TODO Auto-generated method stub
return null;
} public int getServerPort() {
// TODO Auto-generated method stub
return 0;
} public boolean isSecure() {
// TODO Auto-generated method stub
return false;
} public void removeAttribute(String arg0) {
// TODO Auto-generated method stub } public void setAttribute(String arg0, Object arg1) {
// TODO Auto-generated method stub } public void setCharacterEncoding(String arg0)
throws UnsupportedEncodingException {
// TODO Auto-generated method stub } }

Request包含Socket的输入流,解析出来的请求uri,在控制台打印出请求的HTTP协议。如下:

GET /servlet/PrimitiveServlet HTTP/1.1
Accept: text/html, application/xhtml+xml, */*
Accept-Language: zh-CN
User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko
Accept-Encoding: gzip, deflate
Host: localhost:8080
Connection: Keep-Alive

Response:

package ex02.pyrmont;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.util.Locale; import javax.servlet.ServletOutputStream;
import javax.servlet.ServletResponse; public class Response implements ServletResponse { private OutputStream outputStream;
private PrintWriter printWriter = null;
private Request request; public Response(OutputStream outputStream) {
this.outputStream = outputStream;
} /**
* this method is used to server static pages
*/
public void sendStaticResource() {
byte[] buff = new byte[1024];
FileInputStream fis = null;
File file = new File(Constants.WEB_ROOT, request.getUri());
try {
fis = new FileInputStream(file);
int ch = fis.read(buff, 0, 1024);
while(ch != -1) {
outputStream.write(buff, 0, ch);
ch = fis.read(buff, 0, 1024);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} public void setRequest(Request request) {
this.request = request;
} public void flushBuffer() throws IOException {
// TODO Auto-generated method stub } public int getBufferSize() {
// TODO Auto-generated method stub
return 0;
} public String getCharacterEncoding() {
// TODO Auto-generated method stub
return null;
} public Locale getLocale() {
// TODO Auto-generated method stub
return null;
} public ServletOutputStream getOutputStream() throws IOException {
// TODO Auto-generated method stub
return null;
} public PrintWriter getWriter() throws IOException {
printWriter = new PrintWriter(outputStream, true);
return printWriter;
} public boolean isCommitted() {
// TODO Auto-generated method stub
return false;
} public void reset() {
// TODO Auto-generated method stub } public void resetBuffer() {
// TODO Auto-generated method stub } public void setBufferSize(int arg0) {
// TODO Auto-generated method stub } public void setContentLength(int arg0) {
// TODO Auto-generated method stub } public void setContentType(String arg0) {
// TODO Auto-generated method stub } public void setLocale(Locale arg0) {
// TODO Auto-generated method stub } }

Response包含socket的输出流,并实现了ServletReponse接口的getWriter方法,包含方法sendStaticResource发送静态资源到客户端。

StaticResourceProcessor类:

package ex02.pyrmont;

public class StaticResourceProcessor {

    public void process(Request request, Response response) {
response.sendStaticResource();
}
}

StaticResourceProcessor包含process方法,通过传入的request和response对象,调用response的sendStaticResource。

ServeltProcess1类:

package ex02.pyrmont;

import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLStreamHandler; import javax.servlet.Servlet;
import javax.servlet.ServletException; public class ServletProcessor1 {
public void process(Request request, Response response) {
String uri = request.getUri();
String servletName = uri.substring(uri.lastIndexOf("/") + 1);
URLClassLoader loader = null; // create a URL ClassLoader
URL[] urls = new URL[1];
URLStreamHandler urlStreamHandler = null;
File classPath = new File(Constants.WEB_ROOT);
String spec;
try {
spec = new URL("file", null, classPath.getCanonicalPath() + File.separator).toString();
urls[0] = new URL(null, spec, urlStreamHandler);
loader = new URLClassLoader(urls);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
//new instance
Class myClass = null;
try {
myClass = loader.loadClass(servletName);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} //invoke the service method
Servlet servlet = null;
try {
servlet = (Servlet)myClass.newInstance();
servlet.service(request, response);
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ServletException e) {
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

该类主要实现的工作是加载public static final String WEB_ROOT = System.getProperty("user.dir") + File.separator + "webroot"目录下的servlet class,并调用该servlet的service方法。

这里测试的是PrimitiveServlet.class,代码如下:

import javax.servlet.*;
import java.io.IOException;
import java.io.PrintWriter; public class PrimitiveServlet implements Servlet { public void init(ServletConfig config) throws ServletException {
System.out.println("init");
} public void service(ServletRequest request, ServletResponse response)
throws ServletException, IOException {
System.out.println("from service");
PrintWriter out = response.getWriter();
out.println("Hello. Roses are red.");
out.print("Violets are blue.");
} public void destroy() {
System.out.println("destroy");
} public String getServletInfo() {
return null;
}
public ServletConfig getServletConfig() {
return null;
} }

三、Application2

在Application1中有个潜在的问题,ServletProcessor1传入Request对象和Response对象到调用的Servlet的service方法中,如果编程者知道实现逻辑,那么在service方法,它可以通过把ServletRequest向下转型到Request对象,把ServletResponse向下转型到Response对象,这样就可以调用Request对象和Response对象中的public方法,如parse方法。

解决的办法是用Facade类。UML图如下:

在Application2,我们添加两个facade类:RequestFacade和ReponseFacade。

RequestFacade类:

package ex02.pyrmont;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.Enumeration;
import java.util.Locale;
import java.util.Map; import javax.servlet.RequestDispatcher;
import javax.servlet.ServletInputStream;
import javax.servlet.ServletRequest; public class RequestFacade implements ServletRequest {
private ServletRequest request; public RequestFacade(Request request) {
this.request = request;
} /** implementaion of ServletRequest **/
public Object getAttribute(String name) {
return this.request.getAttribute(name);
} public Enumeration getAttributeNames() {
return this.request.getAttributeNames();
} public String getCharacterEncoding() {
return this.request.getCharacterEncoding();
} public int getContentLength() {
return this.request.getContentLength();
} public String getContentType() {
return this.request.getContentType();
} public ServletInputStream getInputStream() throws IOException {
return this.request.getInputStream();
} public Locale getLocale() {
return this.request.getLocale();
} public Enumeration getLocales() {
return this.request.getLocales();
} public String getParameter(String name) {
return this.request.getParameter(name);
} public Map getParameterMap() {
return this.request.getParameterMap();
} public Enumeration getParameterNames() {
return this.request.getParameterNames();
} public String[] getParameterValues(String name) {
return this.request.getParameterValues(name);
} public String getProtocol() {
return this.request.getProtocol();
} public BufferedReader getReader() throws IOException {
return this.request.getReader();
} public String getRealPath(String path) {
return this.request.getRealPath(path);
} public String getRemoteAddr() {
return this.request.getRemoteAddr();
} public String getRemoteHost() {
return this.request.getRemoteHost();
} public RequestDispatcher getRequestDispatcher(String path) {
return this.request.getRequestDispatcher(path);
} public String getScheme() {
return this.request.getScheme();
} public String getServerName() {
return this.request.getServerName();
} public int getServerPort() {
return this.request.getServerPort();
} public boolean isSecure() {
return this.request.isSecure();
} public void removeAttribute(String name) {
this.request.removeAttribute(name);
} public void setAttribute(String name, Object o) {
this.request.setAttribute(name, o);
} public void setCharacterEncoding(String env)
throws UnsupportedEncodingException {
this.request.setCharacterEncoding(env);
} }

该类包含Request对象,但是过滤了Request的parse等方法。

ResponseFacade类:

package ex02.pyrmont;

import java.io.IOException;
import java.io.PrintWriter;
import java.util.Locale; import javax.servlet.ServletOutputStream;
import javax.servlet.ServletResponse; public class ResponseFacade implements ServletResponse { private ServletResponse response; public ResponseFacade(Response response) {
this.response = response;
} /** implementaion of ServletResponse **/
public void flushBuffer() throws IOException {
this.response.flushBuffer();
} public int getBufferSize() {
return this.response.getBufferSize();
} public String getCharacterEncoding() {
return this.response.getCharacterEncoding();
} public Locale getLocale() {
return this.response.getLocale();
} public ServletOutputStream getOutputStream() throws IOException {
return this.response.getOutputStream();
} public PrintWriter getWriter() throws IOException {
return this.response.getWriter();
} public boolean isCommitted() {
return this.response.isCommitted();
} public void reset() {
this.response.reset();
} public void resetBuffer() {
this.response.resetBuffer();
} public void setBufferSize(int size) {
this.response.setBufferSize(size);
} public void setContentLength(int len) {
this.response.setContentLength(len);
} public void setContentType(String type) {
this.response.setContentType(type);
} public void setLocale(Locale loc) {
this.response.setLocale(loc);
} }

该类包含Response对象,但是过滤了Reponse的sendStaticResponse等方法。

修改后的ServletProcessor类如下:

package ex02.pyrmont;

import java.io.File;
import java.io.IOException;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.net.URLStreamHandler; import javax.servlet.Servlet;
import javax.servlet.ServletException; public class ServletProcessor2 {
public void process(Request request, Response response) {
String uri = request.getUri();
String servletName = uri.substring(uri.lastIndexOf("/") + 1);
URLClassLoader loader = null; // create a URL ClassLoader
URL[] urls = new URL[1];
URLStreamHandler urlStreamHandler = null;
File classPath = new File(Constants.WEB_ROOT);
String spec;
try {
spec = new URL("file", null, classPath.getCanonicalPath() + File.separator).toString();
urls[0] = new URL(null, spec, urlStreamHandler);
loader = new URLClassLoader(urls);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
//new instance
Class myClass = null;
try {
myClass = loader.loadClass(servletName);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} //invoke the service method
Servlet servlet = null;
try {
servlet = (Servlet)myClass.newInstance();
// use facade class
RequestFacade requestFacade = new RequestFacade(request);
ResponseFacade responseFacade = new ResponseFacade(response);
servlet.service(requestFacade, responseFacade);
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (ServletException e) {
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

Chapter 2: A Simple Servlet Container的更多相关文章

  1. What is the difference Apache (Http Server) and Tomcat (Servlet Container)

    The Apache Project The Apache Project is a collaborative software development effort. Its goal is to ...

  2. Web container==Servlet container

    Web container From Wikipedia, the free encyclopedia   (Redirected from Servlet container)     Web co ...

  3. 1.端口被占用问题:Embedded servlet container failed to start. Port 8097 was already in use.

    1.端口被占用问题:Embedded servlet container failed to start. Port 8097 was already in use.netstat -anonetst ...

  4. SpringBoot项目 org.springframework.boot.context.embedded.EmbeddedServletContainerException: Unable to start embedded Jetty servlet container报错

    SpringBoot项目启动报错 ERROR 2172 --- [ main] o.s.boot.SpringApplication : Application startup failed org. ...

  5. what is Servlet Container[转载]

    1 在这个博客中,我将描述一下web服务器.Servlet容器的基本概念,以及Servlet容器和jvm之间的关系.我想要证明的是Servlet容器不过就是一个java程序. 2 什么是web服务器 ...

  6. Chapter 1: A Simple Web Server

    这算是一篇读书笔记,留着以后复习看看. Web Server又称为Http Server,因为它使用HTTP协议和客户端(一般是各种各样的浏览器)进行通信. 什么是HTTP协议呢? HTTP协议是基于 ...

  7. servlet container:tomcat jetty and undertow

    1 spring boot内嵌容器支持tomcat.jetty和undertow 但是undertow性能最好,详见: https://examples.javacodegeeks.com/enter ...

  8. JSF 2.0 hello world example

    In this tutorial, we will show you how to develop a JavaServer Faces (JSF) 2.0 hello world example, ...

  9. What is the difference between J2EE and Spring

    来自于:https://www.quora.com/What-is-the-difference-between-J2EE-and-Spring Lot of people specially tho ...

随机推荐

  1. 【bzoj3160】【xsy1726】万径人踪灭

    [bzoj3160]万径人踪灭 题意 给定一个由'a'和'b'构成的字符串,求不连续回文子序列的个数. \(n\leq 100000\) 分析 还是蛮不错的. 这道题基本上是自己想到的. 除了没有利用 ...

  2. 第一堂java web课

    一天的课程上完,虽然很累,但是因为自己的收获,所以我很开心. 第一节课老师带我们大家学习了HTML,学了很多标签,比如:html,head,body <html></html> ...

  3. 发布完ArcGIS地图服务后,服务未启动成功

    今天下午更新地图服务后,服务未启动成功.出来的弹出框警告问题目前应该是ArcGIS Server出了问题,打开ArcCatalog目录,查看GIS服务器下localhost下的服务,只要是今天发布的服 ...

  4. enum使用总结

    enum的一般使用方法是它会占用最大的成员长度 然后我忘记的是enum还可以这样使用 enum ExctState { START, SUCCEED, FAILURE=6, REJECT, }; 这样 ...

  5. JavaScript prototype 属性

    prototype 属性使开发人员有能力向对象添加属性和方法. 语法 object.prototype.name=value 实例 在本例中,我们将展示如何使用 prototype 属性来向对象添加属 ...

  6. 转载python2进制打包相关

    Python模块——struct(字节流,组包拆包实现) http://www.linuxidc.com/Linux/2014-02/97158.htm [日期:2014-02-24] 来源:Linu ...

  7. 使用OpenGL ES绘制3D图形

    如果应用定义的顶点不在同一个平面上,并且使用三角形把合适的顶点连接起来,就可以绘制出3D图形了. 使用OpenGL  ES绘制3D图形的方法与绘制2D图形的步骤大致相同,只是绘制3D图形需要定义更多的 ...

  8. BroadcastReceiver的实例----基于Service的音乐播放器之二

    该程序的后台Service会在播放状态发生改变时对外发送广播(广播将会激发前台Activity的BroadcastReceiver):它也会采用BroadcastReceiver监听来自前台Activ ...

  9. <构建之法>之第一二三章的感悟

    第一章 看了第一章,第一章主要是概论,主要讲述软件是什么,是由什么组成的,然后接着陈述软件工程是什么,看了第一章之后,得知,软件工程只是实现软件的一个工具,有了工具做事情才容易.还有进行运维和维护软件 ...

  10. plsql记住登录密码

    登录plsql:tools(工具)->preference(首选项)->Login history(登录历史):选择"Store with password"(带口令存 ...