最近写了一个公司网站,其中只有前端部分,还没有写java代码。在其中js部分有一些内容我觉的可以用配置项来代替,因为直接写到js代码里,有时候不太方便。
故想着使用java来实现一下,读取xml文件配置项的方式。
最简单的办法就是使用servlet, 即就是写一个servlet ,在容器已加载的时候就能读取到xml配置文件中的内容,然后我就写了一个非常非常简单的servlet,
package com.xljy.servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
public class InitServlet extends HttpServlet {
@Override
public void init() throws ServletException {
System.out.println("进入InitServlet1");
}
}
就这个servlet, ,然后再在web.xml 配置上servlet
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="qaservice" version="3.0">
<display-name>edu_5ixl</display-name>
<servlet>
<servlet-name>InitServlet</servlet-name>
<servlet-class>com.xljy.servlet.InitServlet</servlet-class>
<!-- <load-on-startup>1</load-on-startup>
--></servlet><servlet-mapping> <servlet-name>InitServlet</servlet-name> <url-pattern>/InitServlet</url-pattern></servlet-mapping><welcome-file-list> <welcome-file>index.jsp</welcome-file></welcome-file-list></web-app>
这里没有写<load-on-startup>1</load-on-startup>
没有写这句,如果不访问InitServlet 的话 InitServlet 就不会执行的 ,故得写上 <load-on-startup>1</load-on-startup>
得写上这句, 挡在tomcat一启动的时候,就会执行 InitServlet
我查了一下,web.xml中load-on-startup的作用
贴一段英文原汁原味的解释如下:
Servlet specification:
The load-on-startup element indicates that this servlet should be loaded (instantiated and have its init() called) on the startup of the web application.
The optional contents of these element must be an integer indicating the order in which the servlet should be loaded. If the value is a negative integer, or the element is not present, the container is free to load the servlet whenever it chooses. If the
value is a positive integer or 0, the container must load and initialize the servlet as the application is deployed. The container must guarantee that servlets marked with lower integers are loaded before servlets marked with higher integers. The container
may choose the order of loading of servlets with the same load-on-start-up value.
翻译过来的意思大致如下:
1)load-on-startup元素标记容器是否在启动的时候就加载这个servlet(实例化并调用其init()方法)。
2)它的值必须是一个整数,表示servlet应该被载入的顺序
2)当值为0或者大于0时,表示容器在应用启动时就加载并初始化这个servlet;
3)当值小于0或者没有指定时,则表示容器在该servlet被选择时才会去加载。
4)正数的值越小,该servlet的优先级越高,应用启动时就越先加载。
5)当值相同时,容器就会自己选择顺序来加载。
所以,<load-on-startup>x</load-on-startup>,中x的取值1,2,3,4,5代表的是优先级,而非启动延迟时间。
这里感谢一下作者,我也是摘抄。
后来我又写了一个InitServlet2 ,如下:
package com.xljy.servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
public class InitServlet2 extends HttpServlet {
@Override
public void init() throws ServletException {
System.out.println("进入InitServlet2");
}
}
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="qaservice" version="3.0">
<display-name>edu_5ixl</display-name>
<servlet>
<servlet-name>InitServlet</servlet-name>
<servlet-class>com.xljy.servlet.InitServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>InitServlet</servlet-name>
<url-pattern>/InitServlet</url-pattern>
</servlet-mapping>
<servlet>
<servlet-name>InitServlet2</servlet-name>
<servlet-class>com.xljy.servlet.InitServlet2</servlet-class>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>InitServlet2</servlet-name>
<url-pattern>/InitServlet2</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
这里仅此将此知识点记录一下。
不积跬步,无以至千里
不积小流,无以成江海