jsf 2 - How to replacement "<%=" from jsp to jsf2 page -


this question has answer here:

i have jsp page code :

<f:verbatim><%=printpassedparam(request)%></f:verbatim> 

printpassedparam returns string type. (it return html tags)
wanna migrate jsf2, how replace <%= in xhtml page ?

thanks in advance

i did using "h:outputtext" this. it's working :)

<h:outputtext escape="false" value="#{page.beanname.printpassedparam()}"/> 

Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -