Check if session exists JSF
If someone writes a URL and tries to jump the login page, how can I check that and redirect him to the login page? You seem to using homegrown authentication. In that case, you need to implement a servlet filter. JSF stores session scoped managed beans as attributes of HttpSession, so you could just check … Read more