`

Servlet( ServletConfig & ServletContext)

    博客分类:
  • web
 
阅读更多

开发第一个Servlet入门应用

打开myeclipse,新建一个web工程,名为day04,在src目录下新建一个包为it.cast,如下:

 



 

同时在web.xml文件中会自动产生代码:

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5" 

xmlns="http://java.sun.com/xml/ns/javaee" 

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 

http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

  <servlet>

    <servlet-name>ServletDemo1</servlet-name>

    <servlet-class>cn.itcast.ServletDemo1</servlet-class>

  </servlet>

  <servlet-mapping>

    <servlet-name>ServletDemo1</servlet-name>

    <url-pattern>/servlet/ServletDemo1</url-pattern>

  </servlet-mapping>

  <welcome-file-list>

    <welcome-file>index.jsp</welcome-file>

  </welcome-file-list>

</web-app>

启动tomcat,在IE中输入http://localhost:8080/day05/servlet/ServletDemo1,得到Hello Httpservlet!!!

 

从上述的入门案例来看servlet的UML图是如何访问



 

由图中可以看出servlet的生命周期:

 

Servlet的整个生命周期内,Servletinit方法只被调用一次。而对一个Servlet的每次访问请求都导致Servlet引擎调用一次servletservice方法。对于每次访问请求,Servlet引擎都会创建一个新的HttpServletRequest请求对象和一个新的HttpServletResponse响应对象,然后将这两个对象作为参数传递给它调用的Servletservice()方法,service方法再根据请求方式分别调用doXXX方法。

2 针对客户端的多次Servlet请求,通常情况下,服务器只会创建一个Servlet实例对象,也就是说Servlet实例对象一旦创建,它就会驻留在内存中,为后续的其它请求服务,直至web容器退出,servlet实例对象才会销毁。

 

ServletConfig

Servlet的配置文件中,可以使用一个或多个<init-param>标签为servlet配置一些初始化参数。

servlet配置了初始化参数后,web容器在创建servlet实例对象时,会自动将这些初始化参数封装到ServletConfig对象中,并在调用servletinit方法时,将ServletConfig对象传递给servlet。进而,程序员通过ServletConfig对象就可以得到当前servlet的初始化参数信息。

 

案例: 获取WEB应用的初始化参数。

假如:在web中配置文件,如下:

<?xml version="1.0" encoding="UTF-8"?>

<web-app version="2.5" 

xmlns="http://java.sun.com/xml/ns/javaee" 

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 

http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">

  <servlet>

    <servlet-name>ServletDemo3</servlet-name>

    <servlet-class>cn.itcast.ServletDemo3</servlet-class>

    <init-param>

    <param-name>data</param-name>

    <param-value>xxxx</param-value>

    </init-param>

  </servlet>

  <servlet-mapping>

    <servlet-name>ServletDemo3</servlet-name>

    <url-pattern>/servlet/ServletDemo3</url-pattern>

  </servlet-mapping>

</web-app>

 

第一种:

 

package cn.itcast;

import java.io.IOException;

import java.io.PrintWriter;

import javax.servlet.ServletConfig;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

import javax.servlet.jsp.jstl.core.Config;

public class ServletDemo3 extends HttpServlet {

         private ServletConfig config;

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

       String value=config.getInitParameter("data");

      System.out.println(value);

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

      doGet(request, response);

}

@Override(右击àSourceàOverride/Implement MethodsàGenericServletàinit(String,Throwable)àok形成)

public void init(ServletConfig config) throws ServletException {

// TODO Auto-generated method stub

      this.config=config;

}

}Console中就拿到了xxx       

 

第二种:

 

package cn.itcast;

import java.io.IOException;……………….

public class ServletDemo3 extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

     String value=this.getServletConfig().getInitParameter("data");

    System.out.println(value);

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

     doGet(request, response);

}

}Console中业可以拿到了xxx

 

当有多个参数的时候:下面有得到指定的和得到所有的。

 

//得到指定的

String value=this.getServletConfig().getInitParameter("data1");

System.out.println(value);

//得到所有的

Enumeration e=this.getServletConfig().getInitParameterNames();

while(e.hasMoreElements()){

String name=(String)e.nextElement();

String value1=this.getServletConfig().getInitParameter(name);

System.out.println(name+"="+value1);

}

 

阅读ServletConfig API,一般web.xml文件用来:

• 获得字符集编码

• 获得数据库连接信息

• 获得配置文件,查看struts案例的web.xml文件

 

 

 

ServletContext

WEB容器在启动时,它会为每个WEB应用程序都创建一个对应的ServletContext对象,它代表当前web应用。

2 ServletContext对象被包含在ServletConfig对象中,开发人员在编写servlet时,可以通过ServletConfig.getServletContext方法获得对ServletContext对象的引用。

两种得到ServletContext的方式:

 

//得到ServletContext方式1

ServletContext context=this.getServletConfig().getServletContext();

//得到ServletContext方式2

context=this.getServletContext();

 

3 由于一个WEB应用中的所有Servlet共享同一个ServletContext对象,因此Servlet对象之间可以通过ServletContext对象来实现通讯。ServletContext对象通常也被称之为context域对象。(requestsessionpage

4 查看ServletContext API文档,了解ServletContext对象的功能。

 

应用: 1、多个Servlet通过ServletContext对象实现数据共享。

先吧数据存在servletContext域里面

 

          String date="aaa";

          this.getServletContext().setAttribute("date", date);

   然后在另一个servlet类去共享,并且输出来

 

          String value=(String) this.getServletContext().getAttribute("date");

          System.out.println(value);

 


 

2、利用ServletContext对象读取资源文件。

• 得到文件路径

• 读取资源文件的三种方式

• .properties文件(属性文件)

cn.itcast包里,新建一个文件db.properties,注意这个文件会建在与servlet程序同目录下

有两种资源文件(properties(没有关系的)xml(配置文件)

url=jdbc:mysql://localhost:3306/test

username=root

password=root

 

 

package cn.itcast;

import java.io.IOException;

import java.io.InputStream;

import java.io.PrintWriter;

import java.util.Properties;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

public class ServletDemo9 extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

InputStream in=this.getServletContext().getResourceAsStream("/WEB-INF/classes/cn/itcast/db.properties");

Properties props=new Properties();

props.load(in);

String url=props.getProperty("url");

String username=props.getProperty("username");

String password=props.getProperty("password");

System.out.println(url);

System.out.println(username);

System.out.println(password);

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

doGet(request, response);

}

}

IE中输入http://localhost:8080/day05/servlet/ServletDemo9获取,在Console下打印出

jdbc:mysql://localhost:3306/test

root

root


假如资源文件在src下另一个包里,它映射的地址是

InputStream in=this.getServletContext().getResourceAsStream("/WEB-INF/classes /db.properties");

假如资源文件在webRoot目录下

InputStream in=this.getServletContext().getResourceAsStream("/db.properties");

 


 

package cn.itcast;

import java.io.FileInputStream;

import java.io.IOException;

import java.io.PrintWriter;

import java.util.Properties;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

//读取资源文件

public class ServletDemo10 extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

//通过servletContextgetRealPath得到资源的绝对路径后,再通过传统流读取资源文件

String path=this.getServletContext().getRealPath("/WEB-INF/classes/cn/itcast/db.properties");

String filename=path.substring(path.lastIndexOf("\\")+1);

System.out.println("当前读取到的资源名称是:"+filename);

FileInputStream in =new FileInputStream(path);

Properties props=new Properties();

props.load(in);

String url=props.getProperty("url");

String username=props.getProperty("username");

String password=props.getProperty("password");

System.out.println(url);

System.out.println(username);

System.out.println(password);

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

doGet(request, response);

}

}得到:

当前读取到的资源名称是:db.properties

jdbc:mysql://localhost:3306/test

root

root


 

  • 大小: 69.7 KB
  • 大小: 49.6 KB
分享到:
评论

相关推荐

    ServletConfig与ServletContext.docx

    ServletConfig和ServletContext是Java Servlet API中的两个重要接口,它们在Web应用程序中扮演着关键角色,主要负责管理和传递初始化参数以及实现应用级别的通信。 ServletConfig对象主要用于装载Servlet的初始化...

    ServletContext与ServletConfig关系

    在 Servlet 编程中,ServletConfig 和 ServletContext 两个对象经常被混淆,然而它们有着截然不同的作用域和用途。 首先, lets 看看 ServletConfig 对象。ServletConfig 对象是 Servlet 的配置对象,用于存储 ...

    35、servlet--servletContext

    `servletContext`是Servlet API中的一个关键概念,代表了整个Web应用程序的上下文。在这个上下文中,Servlet可以共享信息,如全局属性、监听器等。下面将详细讨论`servletContext`及其在实际开发中的应用。 一、...

    有关ServletConfig与ServletContext的访问

    ServletConfig和ServletContext是Java Servlet API中的两个重要概念,它们在Web应用程序中扮演着配置和通信的角色。理解并熟练使用这两个接口对于开发高效、可维护的Web应用至关重要。 ServletConfig对象代表了一个...

    浅析javax.servlet.Servlet,ServletContext接口

    在Java Web开发中,`javax.servlet`包下的`Servlet`和`ServletContext`接口扮演着至关重要的角色。这两个接口是Servlet API的核心部分,它们为Web应用程序提供了一种标准的方式来处理HTTP请求并管理全局数据。 首先...

    (源码)基于Java Servlet的会话管理与事件监听系统.zip

    项目涵盖了Servlet的生命周期管理、ServletConfig和ServletContext的使用、事件监听器的实现、过滤器的应用以及异步处理的实现。 ## 项目的主要特性和功能 1. Servlet生命周期管理 实现了Servlet的初始化、服务和...

    ServletContext与ServletConfig的深度分析

    在Java Web开发中,`ServletContext`和`ServletConfig`是非常重要的两个接口,它们分别代表了应用级别的共享环境和单个Servlet的配置信息。理解这两个接口的工作原理对于构建高效、可维护的应用程序至关重要。 ####...

    ServletConfig

    ServletConfig主要用于传递特定Servlet的初始化参数,而ServletContext则代表了整个Web应用程序的上下文,它可以共享数据给所有Servlet或Filter,并且提供了获取Web应用级的初始化参数和资源的功能。 ### 源码分析 ...

    Servlet Tutorial

    - ServletConfig 和 ServletContext 接口:二者都用于在 Servlet 启动时传递配置信息,但 ServletConfig 提供的是单个 Servlet 的初始化参数,而 ServletContext 提供的是整个 Web 应用的环境信息。 8. 状态管理: ...

    javaWEB总结(3):ServletConfig对象

    - ServletConfig主要存储Servlet的个性化配置信息,而ServletContext则提供了全局的资源访问和通信。 5. **实际应用场景** - 配置数据库连接信息,如URL、用户名和密码。 - 设置日志级别或日志文件路径。 - ...

    javax.servlet_api.chm中文版英文版

    4. **ServletConfig** 和 **ServletContext**:ServletConfig对象提供了Servlet的配置信息,而ServletContext则代表整个Web应用程序的上下文,可用于共享数据或注册监听器。 5. **Servlet生命周期**:包括初始化、...

    ServletContext与application异同.docx

    - `ServletConfig`是从`ServletContext`中获取的,它包含了Servlet的个性化配置信息,而`ServletContext`包含的是整个应用的通用信息。 3. **废弃的Servlet获取方法** - 在早期的Servlet API中,`ServletContext`...

    servlet-api-2.4.jar.zip

    javax.servlet.ServletConfig javax.servlet.GenericServlet javax.servlet.ServletContext javax.servlet.ServletRequest javax.servlet.http.HttpUtils javax.servlet.ServletResponse javax.servlet....

    Servlet+API中文API[China]

    Servlet处理请求、多线程和映射、Servlet的卸载、Servlet映射技术、通过类名调用Servlet、HTTP会话、建立Session、Request Dispatcher接口、Servlet接口、ServletConfig接口、ServletContext接口、SingleThreadModel...

    servlet-api.rar_java servlet_servlet api_servlet api hmtl_servle

    1. **javax.servlet** 包:这是Servlet API的核心,提供了Servlet、ServletConfig、ServletContext等基础接口。Servlet接口定义了Servlet的基本行为,如init、service、destroy方法,用于初始化、处理请求和销毁...

    实验3 Servlet基础.docx

    在这个实验中,我们将深入理解并实践Servlet的基础知识,包括HttpServlet的doGet()和doPost()方法、ServletConfig对象的使用以及ServletContext接口的数据共享功能。 首先,我们来看HttpServlet的doGet()和doPost()...

    servlet的jar包

    1. javax.servlet:这是Servlet API的核心包,包含Servlet、ServletConfig、ServletContext等基本接口和类。Servlet接口定义了Servlet的行为,ServletConfig接口提供了Servlet的配置信息,而ServletContext接口则...

    javax.servlet-api-3.1.0.jar

    `javax.servlet-api-3.1.0.jar`不仅包含这些基本组件的接口和类,还提供了如HttpServletRequest、HttpServletResponse等用于处理HTTP请求和响应的类,以及ServletConfig和ServletContext等用于获取配置信息的对象。...

Global site tag (gtag.js) - Google Analytics