how will you view ur jsp page to the client by using
properties file?
Answer Posted / jane priscilla
Instead of having hard-coded messages or error messages in
the framework, Struts Validator allows you to specify a key
to a message in the ApplicationResources.properties (or
resourcebundle.properties)
File that should be returned if a validation fails.
For ex:
In ApplicationResources.properties we'll have such entries
study.empNo=EmployeeNo
study.empName=EmployeeName
error.name.required=field is mandatory
error.empNo.required=mandatory
The following code will explain u how to use this resource
Properties in the jsp
<tr>
<td><bean:message key="study.empName" />:</td>
<td><html:text property="employeeName"/></td>
</tr>
<html:messages id=”messages” property=”name”>
<font color=”red”>
<bean:write name=”error.name” />
</html:messages>
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
What are the loop holes of struts?
What is filter dispatcher in struts?
What are construction struts?
Why do we need mapdispatchtoprops?
What is Struts2?
What is lookupdispatchaction?
How do struts work?
How does struts work?
while working struts in intellij 7.0error unable to initialize tld location cache: zip file is closed is displayed anybdy can answer me immdialy .ungert
Explain the difference between jakarta struts and apache struts?
Which design pattern the interceptors in struts2 is based on?
What are action classes in struts?
How you will make available any message resources definitions file to the struts framework environment?
What is the purpose of struts.xml in struct2?
What’s the utilization of resource bundle properties file in struts validation structure?