WELD-000072 Managed bean declaring a passivating scope must be passivation capable

坚强是说给别人听的谎言 提交于 2019-11-29 20:06:37

You can make your bean passivation capable by implementing the Serializable interface:

public class DemoBean implements Serializable { ... }

Note that there are more requirements for being passivation capable. Refer to the Weld documentation for more information.

The error might remain even though the CDI bean is serializable:

WELD-000072 Managed bean declaring a passivating scope must be passivation capable

Example class:

@Named
@ConversationScoped
public class TransactionMatchController implements Serializable {
    ...
}

Make sure that all @Interceptors are seializable as well:

@Interceptor
@Transactional
public class TransactionInterceptor implements Serializable {
    ...
}

It must be serializable.

See this answer.

https://community.jboss.org/thread/179828

Best, Anders

Mohd Kose Avase

Make DemoBeans serialized

@Named("DemoBeans")
@SessionScoped
public class DemoBeans  implements Serializable
{

    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

}

You can also activate passivation behavior of your bean with the annotation:

@Stateful(passivationCapable=true)

In this case you don't need to implement Serializable interface.

Regards. Jorge

Verify imports

(some times netbeans used others from others libraries)

Example. import javax.faces.view.ViewScoped; change it by import javax.faces.bean.ViewScoped;

Caused by: org.jboss.weld.exceptions.DeploymentException: WELD-000072: Bean declaring a passivating scope must be passivation capable. Bean: Managed Bean [class com.marcos.controller.PersonaBean] with qualifiers [@Default @Named @Any]


I solved it, apparently CDI,I did not recognize the bean, I just made it more explicit

@Named
@ViewScoped
public class PersonaBean  implements Serializable {
@Inject
private IPersonaService service;
public void registrar() {

    try {
        service.registrar(null);

    }catch (Exception e) {
        e.printStackTrace();
    }
  }
}

the solution for me:

@Named ("PersonaBean")
@ViewScoped
public class PersonaBean  implements Serializable {
@Inject
private IPersonaService service;
public void registrar() {

    try {
        service.registrar(null);

    }catch (Exception e) {
        e.printStackTrace();
    }
  }
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!