初次尝试用spring的多动作控制器来绑定数据,由于资料有限,简单的问题折腾了好久才弄好,现在来总结一下。
用MultiActionController绑定数据有两个简单的方法:(假设需要绑定的对象是Auction_product)
1、 public ModelAndView deleteProduct(HttpServletRequest request,HttpServletResponse response,Auction_product command)throws ServletRequestBindingException{
Auction_product auction_product=(Auction_product)command;
return new ModelAndView(getFormView());
}
这里和表单控制器SimpFormController不一样的是,这里不需要在配置文件中配置commandClass:
2、 public ModelAndView updateProduct(HttpServletRequest request,HttpServletResponse respose)throws Exception{
//下面两句是讲提交的表单信息填充到对象类中
Auction_product auction_product = (Auction_product) newCommandObject(Auction_product.class);
bind(request, auction_product);
return new ModelAndView(getFormView());