ServletContext

ServletContext 代表整个Web应用。

  • Web应用中所有的Servlet 共享一个ServletContext。可以最为Servlet之间通信的桥梁。
  • 获取Web应用的初始化参数
  • 可以通过它来得到该Web工程所有的资源。
  • 实现Servlet的转发

实现 Web工程下的 所有的Servlet 数据共享

public class ServletContextDemo1 extends HttpServlet {
    private static final long serialVersionUID = 1L;
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //将数据通过 ServletContext 传递给 其他的 Servlet
         String data="基本密碼";
         ServletContext servletContext=this.getServletContext() ;
         servletContext.setAttribute("ServletContext的数据", data); //内部 是以 Map的形式实现的
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }
}

另一个Servlet 得到ServletContextDemo1 所的共享的数据

public class ServletContextDemo2 extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        //得到 其他的Servlet 共享的数据
        ServletContext servletContext=this.getServletContext();
        String data=(String) servletContext.getAttribute("ServletContext的数据");
        response.getOutputStream().write(data.getBytes());
    }
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }
}

获取Web应用的初始化参数(整个web站点的参数 不止对应一个Servlet)

 <context-param>
        <param-name>xxx</param-name>
        <param-value>yyy</param-value>
  </context-param>

//获取整个站点下的 初始化参数信息
 ServletContext servletContext=this.getServletContext() ;
 String value=servletContext.getInitParameter("xxx");

实现Servlet的转发

当一个Servlet收到请求后,将此请求重定向给其他的Servelt去。让其他的Servlet去处理

public class ServletContextDemo1 extends HttpServlet {
    private static final long serialVersionUID = 1L;
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
         ServletContext s=this.getServletContext();
         //收到請求后进行转发到 ServletContextDemo2中去
             ServletContext s=this.getServletContext();
         //次个操作无效 因为后面有转发的操作,转发操作的时候会把 response中清空  。在转发前的所有写入无效。2.在转发前不能提交,否服务器会报异常。
         response.getOutputStream().write("这个是ServletContextDemo1过来的数据哦".getBytes());
         RequestDispatcher requestDispatcher= s.getRequestDispatcher("/ServletContextDemo2");
         requestDispatcher.forward(request, response);
         
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }
}
public class ServletContextDemo2 extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
          response.getOutputStream().write("这个是ServletContextDemo1过来的数据哦".getBytes());
    }
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }
}

当ServletContextDemo1 收到请求后转发给ServletContextDemo2 处理。
一般Servlet 当服务器得到请求后,要将 排版后(HTML格式)的数据交给浏览器处理,但是Servlet并不适合排版的处理,通常是转发给 JSP进行处理。

 /**
      * 请求的转发   给jsp
      */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
         String  data="jibenmima";
         this.getServletContext().setAttribute("name", data);
         RequestDispatcher r =request.getRequestDispatcher("/JspDemo1.jsp");
         //请求转发的第两种方式   没有区别
//       RequestDispatcher r = this.getServletContext().getRequestDispatcher("/JspDemo1.jsp");
         r.forward(request, response);


 //当要给jsp传递数据的时候 千万不能用上面的方式 。用 ServletContext来存放数据,然后再根据ServletContext来获取。 
         //这样有线程安全的问题。因为所有的访问都是用的同一个 ServletContext 后面的可能会把之前的覆盖掉
         
         //所有这个时候就要用到 request.setAttribute(name, o);  这个方法了。request 是作为一个域容器,将数据存放到域容器中,在jsp等  获取就行
         String  data="jibenmima";
         request.setAttribute("name", data);
         RequestDispatcher r =request.getRequestDispatcher("/JspDemo1.jsp");         
         r.forward(request, response);
         System.out.println(data);
    }

下面是jsp的代码 jsp自认为就是可以写java代码的html

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
    <%
     String name=(String)this.getServletContext().getAttribute("name");
     out.write(name);

     //要用此方式来进行接收数据  不要用上面的 
     String name=(String) request.getAttribute("name");
     out.write(name);
    %>
</body>
</html>

可以通过它来得到该Web工程所有的资源

首先在src下面创建 db.properties 用来保持数据库的配置信息

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test
username=root
password=root

通过流来读取此文件,注意这里有个文件的路径问题。因为我们是将程序发布到Tomcat中的webapps中去,在启动程序的时候,相当于启动了bin中的startup.bat。相当于这个文件是相对于bin文件的路径来调用的。我们把db.properties文件复制一份到bin文件中,直接调用

FileOutputStream fileOutputStream=new FileOutputStream("db.properties");
        System.out.println(fileOutputStream);

没问题的。这个目录(bin)相当于java虚拟机的启动目录。但是这个方式很恶心。不建议使用。
既然这个ServletContext代表整个web资源,那么它肯定有方法来获取整个web资源的方法。
下面是代码

protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        
        //当  src下有资源的话
        // getServletContext代表整个Web应用。
        // 而这个 db.properties 发布后的路径是
        // D:\tomcat\apache-tomcat-8.5.8\wtpwebapps\Day052\WEB-INF\classes
        // 所以这个 dbpath 为下面路径
        String dbPath = "/WEB-INF/classes/db.properties";
        InputStream inputStream = getServletContext().getResourceAsStream(dbPath);
        //读取  db.properties 中的数据
        Properties properties = new Properties();
        properties.load(inputStream);
        String driver = properties.getProperty("driver");
        String url = properties.getProperty("url");
        String username = properties.getProperty("username");
        String password = properties.getProperty("password");
        //当然你也可以用  getRealPath 方法来获取资源的绝对路径
        String path=getServletContext().getRealPath("/WEB-INF/classes/db.properties");
        FileOutputStream fileOutputStream=new FileOutputStream(path);
        //下面是模板代碼進行讀取 內容
        
        //当 scr下面有资源的话 可以用类加载器进行加载资源
        //但是类加载器有问题。当资源文件过大的时候,或导致虚拟机崩溃  内存溢出(不建议使用)
        //因为 在目录下面生成的.class文件需要有类的加载器来调用 java类,那么也能调用 该目录下面的资源
        ClassLoader servletContextLoader = ServletContextDemo2.class.getClassLoader();//得到类的加载器
        InputStream inputStream2=servletContextLoader.getResourceAsStream("db.properties");
        //下面是模板代碼進行讀取 內容
        
      //当项目下有资源的话,D:\tomcat\apache-tomcat-8.5.8\wtpwebapps\Day052
        InputStream inputStreamRoot = getServletContext().getResourceAsStream("/dba.properties");

    }

读取 src下面的文件到 e盘下song文件夹下

protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        //      test1();
        //读取 src下面的文件  复制到  D盘中song的文件夹下
        //1、 获取此文件的绝对路径以便能截取它的名字,方便后边给它赋名字
        String path=this.getServletContext().getRealPath("/WEB-INF/classes/movie.avi");
        System.out.println(path);//打印為:D:\tomcat\apache-tomcat-8.5.8\wtpwebapps\Day052\WEB-INF\classes\movie.avi
        //根据路径来得到 文件的名字
        String pathName=path.substring(path.lastIndexOf("\\")+1);
         FileInputStream fileInputStream=new FileInputStream(path);
         
         //模板代码
         byte[] buffer=new byte[1024];
         int len=0;
        
         FileOutputStream fileOutputStream=new FileOutputStream("e://song//"+pathName);
         
         while((len=fileInputStream.read(buffer))>0)
         {
             fileOutputStream.write(buffer,0,len);
         }
         fileOutputStream.close();
         fileInputStream.close();
         response.getWriter().write("成功");

    }

当没有ServletContext时,用类加载器来加载资源。下面的代码包含了流的操作和properties的读和写

public class Dao {
    // 文件的 工具类  用来读取 信息,比如 db.properties
    //当读取src下面的文件的时候,必须使用 类加载器了 因为这里没有ServletContext对象的实例
    public void getInfo(){
        try {
            //这里必须使用 Dao.class.getClassLoader().getResource()方法。
            //因为 当如果用 getResourceAsStream(name)时,返回的是一个 inputStream。当类加载的时候只会加载一次。
            //当你向里面重新写数据后,次 流中 的数据不变化。 所有要使用  返回 绝对路径的方法。
            URL url= Dao.class.getClassLoader().getResource("db.properties");
            String path=url.getPath();
            FileInputStream fileInputStream=new FileInputStream(path);
            Properties properties=new Properties();
            properties.load(fileInputStream);
            String propertiesUrl=properties.getProperty("url");
             
            properties.setProperty("name", "value");
            //注意此方法的位置。当你new FileOutputStream(path)的时候,它会默认将里面的数据清空。一定要等到
            //properties.load(fileInputStream); 后再进行new 次对象
            FileOutputStream outputStream=new FileOutputStream(path);
            //将数据 刷新到流中
            properties.store(outputStream, "");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,884评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,755评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,369评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,799评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,910评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,096评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,159评论 3 411
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,917评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,360评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,673评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,814评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,509评论 4 334
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,156评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,882评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,123评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,641评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,728评论 2 351

推荐阅读更多精彩内容