我使用Jersey和Maven创建了一个Web应用程序,我希望在服务器启动时执行一些代码,而不是在调用函数时执行。
@Path("/Users")
public class User {
public static void main(String[] args) throws InterruptedException {
System.out.println("Main executed");
//I want to execute some code here
}
@GET
@Path("/prof")
@Produces(MediaType.APPLICATION_JSON)
public List<String> getFile(@QueryParam("userid") String userid, {
但main
方法永远不会执行,我从未看到输出Main executed
。
我还尝试使用普通的main
方法创建一个新类,但它也永远不会执行。
答案 0 :(得分:3)
您需要创建ServletContextListener
实施,并在web.xml
文件中注册:
ApplicationServletContextListener.java
:
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class ApplicationServletContextListener implements ServletContextListener {
@Override
public void contextInitialized(ServletContextEvent arg0) {
System.out.println("Application started");
}
@Override
public void contextDestroyed(ServletContextEvent arg0) {
}
}
web.xml
:
<web-app>
<listener>
<listener-class>
com.yourapp.ApplicationServletContextListener
</listener-class>
</listener>
</web-app>
如果使用servlet 3.0,您也可以使用@WebListener
注释注释该类,而不是在web.xml
文件中注册它。
或者,正如另一位用户指出的那样,Jersey包含一个ApplicationEventListener
,您可以在初始化应用程序后使用该https://github.com/rails/sass-rails来执行操作:
MyApplicationEventListener.java
:
public class MyApplicationEventListener implements ApplicationEventListener {
private volatile int requestCount = 0;
@Override
public void onEvent(ApplicationEvent event) {
switch (event.getType()) {
case INITIALIZATION_FINISHED:
System.out.println("Application was initialized.");
break;
case DESTROY_FINISHED:
System.out.println("Application was destroyed.");
break;
}
}
@Override
public RequestEventListener onRequest(RequestEvent requestEvent) {
requestCount++;
System.out.println("Request " + requestCount + " started.");
// return the listener instance that will handle this request.
return new MyRequestEventListener(requestCnt);
}
}
请注意,这不是JAX-RS标准的一部分,并且会将您的应用程序绑定到使用Jersey。