I have recently started learning Java EE 6 and I could need some help. I have made a search.xhtml page that has a form, some fields and a commandbutton. The action invokes a method in the managed bean and returns a string. However the url-field in the browser does not update to search-results.xhtml which is the other page with the results. It shows the content inside the search.xhtml page (but it seems like it get the layout and all that from the search-results.xhtml).
(it is very simple, not doing much at this time)
@ManagedBean
@RequestScoped
public class Search {
private SearchBackingBean searchBackingBean;
private ArrayList<String> list;
public Search() {
searchBackingBean = new SearchBackingBean();
list = new ArrayList<String>();
}
public String find() {
return "search-results";
}
search.xhtml
<h:form>
<h:inputText value="#{search.searchBackingBean.query}"
size="60"
required="true"
requiredMessage="Please enter what you want to search for." />
<h:commandButton value="Find" action="#{search.find}" /><br />
<h:outputText value="Search criterias to be included in your search." /><br />
</h:form>