我们在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. <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中的动态注入???)