SpringMVC form标签引入及使用方法
作者:shouyaya
这篇文章主要介绍了SpringMVC form标签引入及使用方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.需在jsp页面引入头文件:
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
2.在jsp页面的使用方法:
3.对应controller的使用:
@RequestMapping(value = "/to_check",params = "id") public String toCheck(int id, Map<String, Object> map){ map.put("claimVoucher",claimVoucherBiz.get(id)); map.put("items",claimVoucherBiz.getItems(id)); map.put("records",claimVoucherBiz.getRecords(id)); DealRecord dealRecord =new DealRecord(); dealRecord.setClaimVoucherId(id); map.put("record",dealRecord); //通过map返回modelAttribute对应的实体对象 return "claim_voucher_check"; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。