in my code ineed to send data using hidden field with spring bind tag,....my code is that
<spring:bind path="abc.Id">
<input type="hidden" id="Id" name="Id" value="<c:out value="${abc.Id}"/>" />
</spring:bind>
my page not laod and iget follwing exception in log
SEVERE: Servlet.service() for
servlet jsp threw exception
javax.servlet.jsp.JspTagException: Neither BindingResult nor plain target object for bean name 'abc' available as request attribute
at org.springframework.web.servlet.tags.BindTag.doStartTagInternal(BindTag.java:122)
at org.springframework.web.servlet.tags.RequestContextAwareTag.doStartTag(RequestContextAwareTag.java:79)
at org.apache.jsp.pages.hardware.allocateHardware_jsp._jspService(allocateHardware_jsp.java:140)
at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
please help