Tags
Artigos Relacionados
Share This
CDI: ManagedBean must be passivation capable
Error occurred during deployment: Exception while loading the app : WELD-000072 Managed bean declaring a passivating scope must be passivation capable
Se vc está recebendo esta mensagem, provavelmente é porque vc não implementou Serializable em seu bean:
[cc]
@Named
public class MeuManagedBean implements java.io.Serializable {
// seu código…
}
[/cc]
Um grande abraço e sucesso!
i like it