I need help about converting a portion of jsp page to jsf. My old jsp page is big, and I am trying to change a portion of it (CountryDropdown List) to JSF. So I created a countryDropdown.jsf, I tested to run it directly, it loaded the country-list/works fine.
In my old jsp page (company.jsp), I removed the countryList's portion and try to call/include the new jsf "countryDropdown.jsf" something like this:
<jsp:include page="/web/Test/countryDropDown.jsf" flush="true" />
But I get the errors: java.lang.RuntimeException: Cannot find FacesContext
I am not sure what I was missing, if I directly run the new jsf page http://.../web/Test/countryDropDown.jsf it works fine.