泽西岛建设者
如何在系统启动时加载某些内容?我的程序启动时没有“主”!?
How it's possible to load something at the start of the system? I`m not have a "main" where my program starts !?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
Application#getSingletons()
。来自RESTful Java(如果你有这本书,请参阅第 142 页):
You could use a singleton object defined in
Application#getSingletons()
.From RESTful Java (if you have the book, see p.142):
一般来说,jersey是由maven构建的。因此,当您执行maven命令时,会生成一个初始化的项目。
更多信息请参阅:
https://jersey.java.net/documentation/latest/index.html
generally, the jersey is built by maven. So, when you execute the maven command, there's a initialized project generated.
More info please see:
https://jersey.java.net/documentation/latest/index.html
您可以编写一个实现 ServletContextListener 的类。
然后,您只需将其添加到 web.xml 文件中,作为 web-app 元素的子元素。
You could write a class that implements ServletContextListener.
Then you would just add this to your web.xml file as child to the web-app element.