时间:2021-05-19
注:完整项目下载
在处理了核心任务之后,我们会发现有些请求并不是都是静态的,那么我们就需要进行实现处理动态请求的要求,如下面代码是我们请求的解决方式,我们只需在HttpRequestImpl实现类中,将如下代码实现具体的判断过程
//判断当前请求的否是静态资源 public boolean isStaticResource(){ return true; } //判断当前请求的否是动态资源 public boolean isDynamicResource(){ return true; }1、实现isStaticResource()方法:
// 判断当前请求的否是静态资源 public boolean isStaticResource() { // 存在??文件??静态?? System.out.println("进入isStaticResource()方法"); if (requestPath != null) { String parent = ConfigUtils.getConfigValue("rootPath"); File file = new File(parent, requestPath); return file.exists() && file.isFile(); } return false; }2、实现isDynamicResource():
// 判断当前请求的否是动态资源 public boolean isDynamicResource() { // 存在??文件??动态?? System.out.println("进入isDynamicResource()方法"); String path = ServletMappingUtils.getMappingValue(requestPath); /* * //使用路径判断,当时我不知道还有一个叫做isContains(key)的方法,如果知道的话 就可以使用了,请参见测试类 * if(isContainers(requestPath())) { return *; } */ System.out.println("ServletMapping中根据requestPath获取的映射:" + path); if (path != null) { return true; } return false; }在动态方法中,我们String path = ServletMappingUtils.getMappingValue(requestPath);来获取请求的资源的路径,如果存在值的话就返回结果,其实现如下所示,对于servlet_mapping.properties文件,还是复制到项目下即可:
package com.sample.utils;import java.io.IOException;import java.io.InputStream;import java.util.Properties;public class ServletMappingUtils { private static Properties p; static { InputStream in=null; p=new Properties(); try { //读了xx.properties文件 in=ServletMappingUtils.class.getResourceAsStream("servlet_mapping.properties"); //放置到p中,即放properties文件中的key,value p.load(in); } catch (IOException e) { e.printStackTrace(); } finally { if(in!=null) try { in.close(); } catch (IOException e) { e.printStackTrace(); } } } public static String getMappingValue(String mapping) { return p.getProperty(mapping); } public static boolean isContainsKey(String key) { return p.containsKey(key); } public static void main(String[] args) {//输出测试 // Properties p=new Properties(); // p.setProperty("rootPath","ddd"); // System.out.println(p.get("rootPath")); System.out.println(getMappingValue("/HelloWorld")); System.out.println(isContainsKey("/Login")); }}3、实现对静态请求和动态请求的封装
在处理完基本的功能性要求之后,我们实现对核心任务取得封装,在封装时,我们仍然采用类实现接口的方式,首先我们需要明确该确定一个怎么样的接口,其代码如下:
package com.sample.http;//Http资源处理器//负责处理http协议的资源请求public interface HttpAccessProcessor { //处理静态资源 页面/文件/图片等等 public void processStaticResource(HttpRequest request,HttpResponse response); //处理动态资源 java代码 浏览器通过路径发送请求可以访问调用java代码 public void processDynamicResource(HttpRequest request,HttpResponse response); //向浏览器返回错误信息及其页面 public void sendError(int statusCode,HttpRequest request,HttpResponse response); }其实现类如下所示:
同样的,在写完代码之后,在response.setContentType(MIMEUtils.getMimeValue(contentType));String path=ServletMappingUtils.getMappingValue(request.getRequestPath());response.printResponseContent(ErrorPageUtils.getErrorPage(statusCode+""));出现问题,按照以前编写的代码进行处理即可,在设置ServletMappingUtils.getMappingValue(request.getRequestPath())部分时,我们要将文件的配置路径设置为自己的类所在的包下面,比如我们的Servlet实现类在com.sample.servlet.HelloWorldServlet,则应该写为/HelloWorld=com.sample.servlet.HelloWorldServlet。
值得注意的是Servlet servlet = (Servlet) className.newInstance();处的错误信息,在这里我们需要再创建一个类进行处理动态跳转,如下所示:
package com.sample.servlet;import com.sample.http.HttpRequest;import com.sample.http.HttpResponse;//只有实现这个接口的类,才可以被浏览器发送请求访问到public interface Servlet { //被浏览器发请求访问到的对象会调用这个指定方法service,进行处理这次浏览器的请求 public void service(HttpRequest request,HttpResponse response);}下面是实现类HelloWorldServlet,其代码如下所示:
package com.sample.servlet;import java.io.PrintWriter;import com.sample.http.HttpRequest;import com.sample.http.HttpResponse;//只有实现这个接口的类,才可以被浏览器发送请求访问到public class HelloWorldServlet implements Servlet{ //被浏览器发请求访问到的对象会调用这个指定方法service,进行处理这次浏览器的请求 public void service(HttpRequest request,HttpResponse response) { String name=request.getParameter("name"); System.out.println(name); try { PrintWriter pw=response.getPrintWriter(); pw.println("<html>"); pw.println("<body>"); pw.println("<center>"+name+":这是我的Servlet</center>"); pw.println("</body>"); pw.println("</html>"); pw.flush(); pw.close(); } catch (Exception e) { e.printStackTrace(); } }}这样就完成了动态跳转页面,但是,我们在每次创建是都需要来new一个新对象,这样不仅浪费时间空间内存等等,最重要的用户体验都找不见了,那么我们就对其再次进行封装,其代码如下,实现request,response对象的封装:
package com.sample.http; //负责创建http协议访问过程中使用到的对象public interface HttpCreator { //返回创建好的request对象 public HttpRequest getHttpRequest(); //返回创建好的response对象 public HttpResponse getHttpResponse(); //返回创建好的HttpAccessProcessor对象 public HttpAccessProcessor getHttpAccessProcessor();}下面就是实现类:
package com.sample.http;import java.net.Socket;//负责创建http协议访问过程中使用到的对象public class HttpCreatorImpl implements HttpCreator{ private Socket s; HttpRequestImpl request; HttpResponseImpl response; HttpAccessProcessorImpl hapi; public HttpCreatorImpl(Socket s) { this.s=s; } //返回创建好的request对象 public HttpRequest getHttpRequest() { return request=new HttpRequestImpl(s); } //返回创建好的response对象 public HttpResponse getHttpResponse() { return response=new HttpResponseImpl(s); } //返回创建好的HttpAccessProcessor对象 public HttpAccessProcessor getHttpAccessProcessor() { return hapi=new HttpAccessProcessorImpl(); }}到此,我们完成了所有对象的封装,下面我们进行测试,写测试类如下所示:
package com.sample.http;<pre name="code" class="java">import java.io.IOException;import java.net.ServerSocket;import java.net.Socket;public class ServerTest { public static void main(String[] args) { //声明变量 ServerSocket ss=null; Socket s=null; boolean flag=true; try { int port=10002; System.out.println("Server Port:"+port); ss=new ServerSocket(port); //while(flag) { //接受客户端发送过来的Socket s=ss.accept(); HttpCreatorImpl hci=new HttpCreatorImpl(s); HttpRequest request=hci.getHttpRequest(); HttpResponse response=hci.getHttpResponse(); HttpAccessProcessor hapi=hci.getHttpAccessProcessor(); // 用于测试收到的信息 if(request.isStaticResource())//处理静态信息 { hapi.processStaticResource(request, response); } else if(request.isDynamicResource())//处理动态请求 { hapi.processDynamicResource(request, response); } else//无法处理时 { System.out.println("无法处理"); hapi.sendError(404, request, response); } } } catch (IOException e) { e.printStackTrace(); } }}当我们在浏览器中输入http://127.0.0.1:10002/HelloWorld?id=1212&name=suguniang信息回车时能够看到如下所示界面,但是此时的状态是在项目文件夹webapps中根本不存在HelloWorld页面,但是我们能够正常访问到页面信息,而此时返回的信息正是我们的Servlet实现类中的内容:
而当我们在URL中输入不存在的请求资源时,则会弹出404界面
到此这篇关于浅谈web服务器项目中静态请求和动态请求处理的文章就介绍到这了,更多相关web服务器中静态请求和动态请求内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
静态网页与动态网页的区别在于Web服务器对它们的处理方式不同。当Web服务器接收到对静态网页的请求时,网站建设中服务器直接将该页发送给客户浏览器,不进行任何处理
使用http模块创建Web服务器Web服务器的功能:接受HTTP请求(GET、POST、DELETE、PUT、PATCH)处理HTTP请求(自己处理,或请求别的
Web的后台语言。客户端、Web服务器、应用服务器三种同时存在,客户端发出请求,Web服务器接收请求,如果是html、css静态资源的话,Web服务器可以自行处
挖坑挖了这么长时间也该继续填坑了,上文书讲到从零开始写一个Tomcat(贰)--建立动态服务器,讲了如何让服务器解析请求,分离servlet请求和静态资源请
浏览器和服务器之间是通过HTTP协议进行连接通讯的。这是一种基于请求和响应模型的协议。浏览器通过URL向服务器发起请求,Web服务器接收到请求,执行一段程序,然