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

来源:百度文库 编辑:神马文学网 时间:2024/05/23 16:47:46
使用XML文件来实现对Servlet的配置我们在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 {
String  message;
DataSource  ds;
/**
* Constructor of the object.
*/
public ServletDemo() {
super();
}
/**
* Destruction of the servlet. 

*/
public void destroy() {
super.destroy(); // Just puts "destroy" string in log
// Put your code here
}
/**
* The doGet method of the servlet. 

*
* 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("");
out.println("");
out.println("  A Servlet");
out.println("  ");
out.print("    This is ");
out.print(this.getClass());
out.println(", using the GET method
");
out.println(this.getServletConfig().getInitParameter("message"));
out.println("  ");
out.println("");
out.flush();
out.close();
}
/**
* The doPost method of the servlet. 

*
* 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中作如下配置:


This is the description of my J2EE component


This is the display name of my J2EE component

ServletDemo
zy.pro.wd.servlet.ServletDemo

initialize the field of message
message

welcome here ,thank you for visiting !!!




ServletDemo
/servlet/ServletDemo

加粗的部分是我们要作的配置。在其中我们给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中的动态注入???)