so now if the response text is array of arrays/list/map etc.. what ever it is, it will be displayed in the componentCombo
The reponse that you get from your action class should be in one of that format(array of arrays/list/map etc..)
There is no Action mapped for namespace / and action name Hello. - [unknown location]
Please check in your struts.xml whether you have a action tag with "hello"
sample struts.xml
JSP
In the above jsp I have "action="createManagerInterest" and in the striys.xml there is a matching action tag for "createManagerInterest"
So the control goes to that particular action.
result-type specifies whether the result should be map, list, json etc..
Please see the below sample code
JSP
"managerNames" is the array of strings which I am returning from the action class.. But I want to display them in JSON format.. so I mentioned result-type as json.
Action.java