1. The lines below are described in the Controller class.
HttpServletRequest request = ServletActionContext.getRequest();
request.setAttribute("persons", persons);
2. The line below is described in the corresponding vm file.
But it does not work.
$request.getAttribute('persons')
How should I use the $request ?
Hi Akira,
you are using webwork module.? or Servlet module?
regards,
tousif shaikh.
I am using webwork module.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
webwork does not return Objects as we return the string based on the string params we are transfering request to the velocity. now from .class your trying to set and getattribute for object.
i can suggest you if its possible you can try servlet module.
or you can put the required data to the session object using setSession() you can use the required object values all over context in velocity and then clear the session this way you could achive.
please try and let me know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.