I have something like
model.addAttribute(\"msg\", \"akhil\"); return \"index\";
in my Controller.
In my view pa
This is because uses XML escaping for the characters '<' and >.
'<'
>
Set the option escapeXml=false of c:out to output your text in bold letters:
escapeXml=false
c:out