How to get one filer without formatting?
I want this to be just a text message without any formatting in jsp?
It can be done in action, but how to do it inside jsp?
System.out.println(this.getFieldErrors().get("fileMissing"));
If you use JSTL, you can do it
<c:out value="${fieldErrors['passwordError']}"/>
and for struts tag you can do it
<s:property value="fieldErrors['fileMissing']"/>
You can use in jsp as follows: <s:fielderror />
<s:fielderror />
<s:fielderror fieldName="fileMissing"/>