为什么 GlassFish 4.1 中的 Weld 在调用 invalidateSession 后对已销毁的 ViewScoped bean 调用 @PreDestroy 方法?

Why does Weld in GlassFish 4.1 call @PreDestroy method on already destroyed ViewScoped beans after call to invalidateSession?

我今天早上注意到,当我的用户注销 Web 应用程序时,我在 GlassFish 4.1 上的 JSF 应用程序 运行 抛出以下错误:

MyAuthenticator 是一个带有 @PreDestroy 注释方法的 javax.faces.view.ViewScoped CDI bean。

作为测试,我删除了@PreDestroy 注释并验证错误消失了。

然后我将 @PreDestroy 注释连同许多调试消息添加回 MyAuthenticator 并执行了以下测试:

测试 1

  1. 已登录应用程序。
  2. 退出应用程序。

测试 2

  1. 已登录应用程序。
  2. 允许会话过期。

调试消息在两个测试中都显示了以下行为:

  1. MyAuthenticator 已创建并显示登录表单。
  2. 提交用户登录表单并登录后,MyAuthenticator 立即销毁。
  3. 当会话失效或过期时,Weld 会抛出报告的错误。

我认为该错误是 Weld 在我已经销毁的 MyAuthenticator 上调用 @PreDestroy 方法的结果。

问题

此问题已在 GlassFish 4.1.2 中得到解决。