The error may persist even if the CDI bean is serializable:
WELD-000072 Managed bean declaring a passivating scope must be passivation capable
Class Example:
@Named @ConversationScoped public class TransactionMatchController implements Serializable { ... }
Make sure all @Interceptors can also be flattened:
@Interceptor @Transactional public class TransactionInterceptor implements Serializable { ... }
Tim Aug 31 2018-12-12T00: 00Z
source share