InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of ConversionErrorFieldValidator annotation? |
|
Answer» This validation annotation checks if there are any conversion errors for a field and applies them if they exist. public class Employee extends ActionSupport{ ConversionErrorFieldValidator(message = "Default message", key = "i18n.key", shortCircuit = true) public String getName() { return name; }}
|
|