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.
我们想创建数据库的备份,但需要知道所有连接都在我们的 Web 应用程序后面关闭。
因此,如果我向 Tomcat 中的特定 Web 应用程序发送停止,它会等待并优雅地关闭其后面的所有作业/进程(与 H2 DB 的连接)并且不再接受任何传入请求吗?
Tomcat 不会终止您可能已打开到数据库的任何连接:您必须自己终止这些连接。当您的 web 应用程序关闭时,尝试使用 aServletContextListener关闭所有数据库连接。
ServletContextListener