Hi
I am working in
struts integrated spring application(struts MVC integrated with spring DelecgationActionProxy).I want to use the <spring:bind> to bind the value of form in to a pojo with out the need of any ActionForm.is it possible in struts-spring application?
my code like
<spring:bind path="
customer.username">
user name: <input type="text" value="${customer.username}" />
</spring:bind>
If it is possible where i have to declare the
customer attribute.my flow is
index.html---->submitAction(I placed here request.setAttribute("customer",new Customer)---->Home.jsp(above logic here)--->ResultAction(request.getAttribute("customer"))
Actually we do not get attribute here.There is no way to put this
customer in session because spring:bind tag works for request attribute only.
Any help on this will be greatful
thank you