I am creating an application using Spring4/JPA/JSoup/Ckeditor.
User logins->opens a page->enters text using ckeditor->publishes it (kind of a small blog).
Data is saved successfully in mysql database, so for example:
<p><strong>Bold</p></strong>
<p><strong>Bold</p></strong>
For correct behaviour it should have displayed like - Bold
When i view source of jsp page, html saved in database appears there as below Output from
<p><strong>Bold</strong></p>
Could you please help me out in this, I am not able to find where the conversion of <> to
< >
is taking place?
Thanks
Adding below code in jsp worked
<c:out escapeXml="false" value="${ticket.body}" />