Related questions
NumberFormatException for input String
I have the following method in a JSF backing bean:
public List<Rent> getTopMemebers(){
return rentDAO.findByMonthAndYear(MonthReport, YearReport);
}
I am displaying this in a datatable:
<p:dataTable value="#{rentController.topMemebers}" var="item">
<p:column&…
JSF and automatic reload of xhtml files
I had some problems with hot-reloading XHTML files using JRebel, Spring, JSF Mojarra 2.0.3 and WebLogic 10.3.
JRebel reloads regular Java classes and js/css files under /WebContent successfully, but not JSF's .xhtml files. A full republish was necessary to get xhtml …