PayaraMicro 不会在 EJB 或 ApplicationScoped 上调用 @PreDestroy

PayaraMicro does not call @PreDestroy on EJB or ApplicationScoped

我正在将 WAR 应用程序从 PayaraServer 迁移到 Payara Micro 以减少 RAM 使用。

我刚刚意识到在使用 CTRL+C 停止实例时不会调用 EJB 上的@PreDestroy。

我想执行一些操作时,是否有正确关闭 payaramicro 实例的正确方法。

感谢您的回答!

或者要停用 Payara Server 中的哪些服务才能使用与 PayaraMicro 一样多的 RAM?

我用的是5.183版本,也试过5.192.

您使用了哪种 EJB?在我看来,它应该适用于 @Singleton@Stateless。我不确定 Payara Micro 如何支持其他 EJB。

但是,由于 Payara Micro 支持 Java EE Web 配置文件并且您正在使用 Web 应用程序,我建议使用 @WebListener 来获取生命周期事件的通知。

可以这样实现:

import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import javax.servlet.annotation.WebListener;

@WebListener
public class ContextListener implements ServletContextListener {

    @Override
    public void contextInitialized(ServletContextEvent event) {
        // do needed setup work here
    }

    @Override
    public void contextDestroyed(ServletContextEvent event) {
        // do your cleanup actions here
    }
}

只需将此 class 添加到您的 WAR 文件即可。