Tomcat shuts down on closing jar

2019-09-20 14:36发布

I made a java web application that calls a main method from a jar file i included as a WebAppLibraries and when this main calls system.exit to terminate it shuts down also the web app closing tomcat. How can avoid to shut down the web app closing only the execution of that main method?

1条回答
甜甜的少女心
2楼-- · 2019-09-20 15:32

By not calling System.exit(). Instead, call the appropriate API for shutting down web-apps for your container, which is container-specific. System.exit() isn't it. See the Javadoc. It's for shutting down entire JVMs, such as servlet containers.

查看更多
登录 后发表回答