You are importing wrong packages for JSF managedbeans
replace these:
import javax.annotation.ManagedBean;
import javax.enterprise.context.SessionScoped;
with
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
The ones you imported are for JAVAEE CDI.
You are probably using Tomcat, that is why they didnt work.