I have JSP page with this code :
<f:verbatim><%=printPassedParam(request)%></f:verbatim>
printPassedParam
returns String
type. (it return some html tags)
I wanna to migrate to JSF2, how could I replace <%=
in xhtml page ?
Thanks in advance
I have JSP page with this code :
<f:verbatim><%=printPassedParam(request)%></f:verbatim>
printPassedParam
returns String
type. (it return some html tags)
I wanna to migrate to JSF2, how could I replace <%=
in xhtml page ?
Thanks in advance
I did it just by using "h:outputText" like this. It's working :)
<h:outputText escape="false" value="#{page.beanName.printPassedParam()}"/>