Code:
@ManagedBean(name="userbean")
Error message
the attribute name is undefined for the annotation type ManagedBean
Code:
@ManagedBean(name="userbean")
Error message
the attribute name is undefined for the annotation type ManagedBean
Maybe you have imported the wrong type.
Try:
import javax.faces.bean.ManagedBean;
Try this
@ManagedBean
public class UserBean...{}
and when using so use
#{userBean.action()}