Reputation: 805
I am new in struts development.
I had created a project in which i have requirement to create a dynamically N number of fields. so it's bean/pojo will not be available.
I have to take input for these dynamic fields in jsp and retrieve those fields in struts2 action classes.
How can i take data of dynamically created table's fields in struts2 action classes.
example-:
user will create action.
one action have many goals and user can define 1 to n measures for goal.
I'll create a form to take input for these measures using jsp.
i want all form data of measures in action classes.
so i don't have getter & setter.
Any suggetion will be helpful, Thanks
Upvotes: 2
Views: 749
Reputation: 4659
To Read all request parameter send from client side to server side you can get it by using ServletRequest.getParameterMap()
For Example :
Map<String, String[]> requestParams = request.getParameterMap();
By this you got the all your form parameters in key-value pair. Iterate this Map and get your parameter value.
I not aware of your table structure in which you want to insert your value.
Upvotes: 1