In some cases, from the beans used in JSF applications, you will need to access the request parameters. For example, in the BusSearch.java, we accessed, the request parameters [Please check the previous JSF lesson]. How to access: FacesContext context = FacesContext.getCurrentInstance(); Some methods of FacesContext: Map getApplicationMap() String getInitParameter(java.lang.String name) Map getInitParameterMap() String getRemoteUser() Map […]

Read more of this post