I am developing an application using Primefaces 5, and part of the app allows users to post information for example a user posting this >>> "please kim visit www.primefaces.org and reading abt primefaces there". The issues is l want the url to be displyed as a hyperlink when the post is being seen by other users. The bold part in the code below is showing the posted message.
<div id="postcontent_div">
<h:panelGrid columns="1" style="background-color: #fff;padding-top: 0px;border-bottom: 1px solid #fff">
<p:commandLink styleClass="profilenamelink" ajax="false" value="#{post.username} "/>
<h:outputText value="How to master Algorithms" style="font-size: 12px;font-weight:bold;color:black"/>
</h:panelGrid>
<h:outputText value="#{post.message}" style="font-size: 12px"/>
</div>