我在tomcat的Spring MVC应用程序中使用Firebase.
似乎firebase创建了一个非守护进程线程,可以防止tomcat关闭.
如何在Spring应用程序中终止/关闭Firebase?
这就是我使用Firebase的方式:
private static Firebase getUserRef(String username)
{
Firebase ref = new Firebase("https://
我应该使用豆子吗?
最佳答案
自Firebase Java客户端v1.0.15起,此问题已得到解决.你可以在这里下载最新版本:
https://www.firebase.com/docs/java-quickstart.html
原文链接:https://www.f2er.com/spring/431502.htmlhttps://www.firebase.com/docs/java-quickstart.html
Firebase现在只创建守护程序线程,因此您的进程将按预期干净地退出.