Multiple choice technology programming languages

In Struts 1.1, you can change how Struts populates a form by

  1. Overriding the populateBean method of the ActionMapping

  2. Overriding the processPopulate method of the Request Processor

  3. Overriding the populate method of the ActionForm

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In Struts 1.1, the RequestProcessor class handles form population. The processPopulate method is responsible for populating ActionForm beans with request parameters. Overriding this method allows developers to customize how form data is populated, making option B correct. ActionMapping's populateBean and ActionForm's populate methods are not the standard extension points for this behavior.