hi,
I need to use 2 object in my jsp page can i use a map for this ?
How to bind in the jsp code ? I try :Code:protected Object formBackingObject(HttpServletRequest request) throws ServletException { Map map=new HashMap(); map.put("carteAutoroute",new CarteAutoroute()); map.put("historiqueCarteAutoroute",new HistoriqueCarteAutoroute()); return map; }
But not succefully...,Code:<spring:bind path="map[\"carteAutoroute\"].id"> <input type="hidden" name="id" value="${status.value}"/> </spring:bind>
Thanks,
Fabien.


Reply With Quote