在Wildfly 16中旋转WAR时出现Infinispan NotSerializableException

时间:2019-05-22 18:10:24

标签: java-ee wildfly infinispan weld wildfly-cluster

我正在尝试使用standalone-full-ha.xml配置在2个以独立模式运行的Wildfly 16节点上运行我的应用程序。当第二个节点启动时,第一个尝试将默认的web缓存分配/平衡到新节点。

这样做时,我在第一个节点的日志中看到以下错误消息,而第二个节点无法启动:

13:45:48,487 ERROR [org.infinispan.remoting.rpc.RpcManagerImpl] (transport-thread--p18-t8) ISPN000073: Unexpected error while replicating: org.infinispan.commons.marshall.NotSerializableException: org.wildfly.transaction.client.ContextTransactionManager
Caused by: an exception which occurred:
    in field com.arjuna.ats.jta.cdi.transactional.TransactionalInterceptorBase.transactionManager
    in object com.arjuna.ats.jta.cdi.transactional.TransactionalInterceptorRequired@73962bdb
    in field org.jboss.weld.contexts.SerializableContextualInstanceImpl.instance
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@333ebcb5
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@333ebcb5
    in field java.util.Collections$SynchronizedCollection.c
    in object java.util.Collections$SynchronizedList@333ebcd4
    in field org.jboss.weld.contexts.CreationalContextImpl.dependentInstances
    in object org.jboss.weld.contexts.CreationalContextImpl@4dc7055b
    in field org.jboss.weld.contexts.SerializableContextualInstanceImpl.creationalContext
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@57504e37
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@57504e37

13:45:50,718 ERROR [org.infinispan.statetransfer.OutboundTransferTask] (transport-thread--p18-t8) Failed to send entries to node node2: org.wildfly.transaction.client.ContextTransactionManager: org.infinispan.commons.marshall.NotSerializableException: org.wildfly.transaction.client.ContextTransactionManager
Caused by: an exception which occurred:
    in field com.arjuna.ats.jta.cdi.transactional.TransactionalInterceptorBase.transactionManager
    in object com.arjuna.ats.jta.cdi.transactional.TransactionalInterceptorRequired@73962bdb
    in field org.jboss.weld.contexts.SerializableContextualInstanceImpl.instance
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@333ebcb5
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@333ebcb5
    in field java.util.Collections$SynchronizedCollection.c
    in object java.util.Collections$SynchronizedList@333ebcd4
    in field org.jboss.weld.contexts.CreationalContextImpl.dependentInstances
    in object org.jboss.weld.contexts.CreationalContextImpl@4dc7055b
    in field org.jboss.weld.contexts.SerializableContextualInstanceImpl.creationalContext
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@57504e37
    in object org.jboss.weld.contexts.SerializableContextualInstanceImpl@57504e37

其他一些注意事项:

  • 启动我在EAR内分发的一个WAR,但不启动同时部署在EAR中的其他两个WAR时,它也会失败
  • 我的web.xml被标记为所有3个WAR的<distributable/>
  • 我的其他缓存似乎可以复制

我似乎无法弄清楚ContextTransactionManager的使用位置,或为什么将其序列化到会话缓存。我假设它可能在我的代码中某个地方,但是我不知道从哪里开始寻找。任何帮助将不胜感激!

更新(05/28/2019)::以下是管理控制台中的几个屏幕快照,显示了在启动时创建的两个会话(我们在Web应用程序中使用JSP,可以运行以预编译所有JSP文件的服务):

Session 1 Session 2

1 个答案:

答案 0 :(得分:0)

更新:首先,这最终是一个非常简单且有些愚蠢的问题。我们已经在LoggedInUser类中使用@ javax.transaction.Transactional批注标记了一个方法,该方法最初不是必需的,但会导致序列化问题。

只是想发布更新,以防其他人遇到类似情况。