Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 jsf-2.x 和 tomcat-7.x。现在我希望我的服务器和项目同时运行运行一个 java 类或首先运行一个 java 类。但我不知道该怎么做?
请帮我
您需要将您的类注册为侦听器,使您的类实现 ServletContextListener 并将其注册到 web.xml 并重新启动您的 tomcat
你可以在网上找到很多教程,向你展示这方面的细节。
tomcat的启动说明在这里。
可以通过多种方式自定义启动过程,包括修改 Tomcat 代码和实现您自己的 LifecycleListener,然后在 server.xml 配置文件中注册。