在web.xml中添加这个:
InitStartup
cn.xxx.monitor.view.InitStartup
0
程序这么写:
package cn.xxx.monitor.view;
public class InitStartup extends HttpServlet {
@Override
public void init() throws ServletException {
// do something
super.init();
}
}
写个servlet监听器啊,
tomcat启动的时候会去创建servlet容器
这个时候你打开你的socket就行了