我使用JAX-RS实现了REST服务。 Web服务旨在用于测试目的。我的应用程序有一个HashMap
,它管理我想要检索的对象。如何在服务启动时初始化此HashMap
,以便HashMap
有一些我可以检索的对象?我尝试在构造函数中的HashMap
中添加一些对象,但是当服务启动时HashMap
为空。我使用JAX-RS的Jersey实现并使用web.xml
文件配置我的资源。
我的web.xml
文件包含以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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_3_0.xsd" version="3.0">
<display-name>OPMSimulator</display-name>
<servlet>
<servlet-name>MyServlet</servlet-name>
<servlet-class>com.ibm.websphere.jaxrs.server.IBMRestServlet</servlet-class>
<init-param>
<param-name>javax.ws.rs.Application</param-name>
<param-value>com.ibm.opm.mobile.prototype.TestApplication</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>MyServlet</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
</web-app>
我的资源类有以下内容:
public class Test {
private static HashMap<Integer, Database> databases;
@GET
@Produces(MediaType.TEXT_XML)
@Path("/database/{id}")
public String database(@PathParam("id")String id) {
Database database = databases.get(Integer.parseInt(id));
return XMLGenerator.getXML(database);
}
}
答案 0 :(得分:9)
在servlet的构造函数中应该工作(在调用doGet
和doPost
之前总是调用它),否则你可以注册一个监听器来初始化你所有的东西:
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;
@WebListener
public class Manager implements ServletContextListener {
public void contextInitialized(ServletContextEvent event) {
}
public void contextDestroyed(ServletContextEvent event) {
}
}
如果您尚未使用Servlet 3.0
且无法升级,因此无法使用@WebListener
注释,则需要在/WEB-INF/web.xml
中手动注册,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
<display-name>projectName</display-name>
<listener>
<listener-class>Manager</listener-class>
</listener>
...
</web-app>