there's a RESTful service which is Producing text/plain and I want to add that content into my JSF page. Is that possible? Is there a tag for that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
If you're using JSP as view technology, you can use the JSTL
It however doesn't run in sync with JSF as you'd expect from the coding. Also, this is not supported in Facelets. So if you want to render/display it conditionally (and thus run in sync with JSF) or are using Facelets, then you'll have to do this in the managed bean. To start, you can use
Put this in the constructor or action method, depending on the conditions it needs to execute. You can however also wrap this all in flavor of a standalone custom/composite component or EL function. Related questions: |
||||
|
|