使用XML文件来实现对Servlet的配置

王朝other·作者佚名  2008-05-31
窄屏简体版  字體: |||超大  

我们在Web应用中可以使用XML来配置servlet,给其提供初始化参数,如下例:

我们创建的Servlet为:ServletDemo.Java,代码如下:

/*

* Created on 2005-8-29

*

* TODO To change the template for this generated file go to

* Window - Preferences - Java - Code Style - Code Templates

*/

package zy.pro.wd.servlet;

import java.io.IOException;

import java.io.PrintWriter;

import javax.sql.DataSource;

import javax.servlet.ServletException;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;

/**

* @author zhangyi

*

* TODO To change the template for this generated type comment go to

* Window - Preferences - Java - Code Style - Code Templates

*/

public class ServletDemo extends HttpServlet {

Stringmessage;

DataSourceds;

/**

* ConstrUCtor of the object.

*/

public ServletDemo() {

super();

}

/**

* Destruction of the servlet. <br

*/

public void destroy() {

super.destroy(); // Just puts "destroy" string in log

// Put your code here

}

/**

* The doGet method of the servlet. <br

*

* This method is called when a form has its tag value method equals to get.

*

* @param request the request send by the client to the server

* @param response the response send by the server to the client

* @throws ServletException if an error occurred

* @throws IOException if an error occurred

*/

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

response.setContentType("text/Html");

PrintWriter out = response.getWriter();

out

.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"");

out.println("<HTML");

out.println("<HEAD<TITLEA Servlet</TITLE</HEAD");

out.println("<BODY");

out.print("This is ");

out.print(this.getClass());

out.println(", using the GET method<br");

out.println(this.getServletConfig().getInitParameter("message"));

out.println("</BODY");

out.println("</HTML");

out.flush();

out.close();

}

/**

* The doPost method of the servlet. <br

*

* This method is called when a form has its tag value method equals to post.

*

* @param request the request send by the client to the server

* @param response the response send by the server to the client

* @throws ServletException if an error occurred

* @throws IOException if an error occurred

*/

public void init() throws ServletException {

// Put your code here

}

}

在此Servlet中我们定义了两个属性message和ds。我们现在在web.xml中作如下配置:

<servlet

<description

This is the description of my J2EE component

</description

<display-name

This is the display name of my J2EE component

</display-name

<servlet-nameServletDemo</servlet-name

<servlet-classzy.pro.wd.servlet.ServletDemo</servlet-class

<init-param

<descriptioninitialize the field of message</description

<param-namemessage</param-name

<param-value

welcome here ,thank you for visiting !!!

</param-value

</init-param

</servlet

<servlet-mapping

<servlet-nameServletDemo</servlet-name

<url-pattern/servlet/ServletDemo</url-pattern

</servlet-mapping

加粗的部分是我们要作的配置。在其中我们给message属性设置了初始值:

welcome here ,thank you for visiting !!!

注重:此处我们不能同时给ds设置初始值,因为web.xml的DTD中约定了只能定义一个属性也就是在配置文件中只答应声明一个参数值对。这样,在我们的servlet中就可以这样来访问此属性:

this.getServletConfig().getInitParameter("message")。

但是,有时候我们需要同时对多个属性用XML来初始化,那么我们就需要自己来写XML文件,同时自己来解析了。

使用XML来配置Servlet的好处:

假如不在XML中对Servlet配置,那么我们修改Servlet的属性的话就要重新启动服务器,而假如使用XML来配置的话就不需要重新启动服务器而可以自动生效。服务器可以自动监视其改变而重新装入文档。对企业来说,系统的连续运营是很重要的。

XML来配置Servlet主要用在初始化参数在运行过程中需要改变的情况下。

(假如可以实现配置多属性的话,那么不是有点象Spring中的动态注入???)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航