How to display html code that is loaded from db in jsf screen?

I have html code in one column. Loaded the html code into one bean. My question is how to display this html code using jsf tags.

+3
source share
1 answer

You can use the component <h:outputText>and install escape="false".

+6
source

Source: https://habr.com/ru/post/1789932/


All Articles