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:
- User enters a bold text in ckeditor and it gets saved as
<p><strong>Bold</p></strong>
- But when I launch the view page(jsp) this data appears along with html tags as it is from the database, like this :-
<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