Yes its possible
If the bean does not exit, first put it in a session
FacesContext.getCurrentInstance().getExternalContext().getSessionMap().put(key,object);
And to use the bean page on xhtml use
<h:outputText value="#{sessionScope.key}" />
source share