码迷,mamicode.com
首页 > 编程语言 > 详细

springmvc 处理lsit类型的请求參数映射成实体属性

时间:2017-07-02 23:25:56      阅读:364      评论:0      收藏:0      [点我收藏+]

标签:mvc   exce   val   width   server   file   code   add   post   

<table align="center"  cellspacing="10">
  				<tr>
  					<td>
  					          母码数目:<input type="text" name="uidCodeGenNumParamList[0].superCodeGenNum"  style="width:180px;" class="textbox" maxlength="24"/>
  					        
  					        子码数目:<input type="text" name="uidCodeGenNumParamList[0].childCodeGenNum" style="width:180px;" class="textbox" maxlength="24" /> 					    
  					</td>
  				</tr>
 				<tr>
  					<td>
  					          母码数目:<input type="text" name="uidCodeGenNumParamList[1].superCodeGenNum"  style="width:180px;" class="textbox" maxlength="24"/>
  					        
  					        子码数目:<input type="text" name="uidCodeGenNumParamList[1].childCodeGenNum" style="width:180px;" class="textbox" maxlength="24" /> 					    
  					</td>
  				</tr>		
  			</table>


这是html页面请求提交到server的表单代码,注意文本框的属性name为:

name="uidCodeGenNumParamList[1].superCodeGenNum"


这是在服务端定义的实体:

public class UidCodeGenNumParam extends EntityBase {

	private String superCodeGenNum;
	private String childCodeGenNum;

	public String getSuperCodeGenNum() {
		return superCodeGenNum;
	}

	public void setSuperCodeGenNum(String superCodeGenNum) {
		this.superCodeGenNum = superCodeGenNum;
	}

	public String getChildCodeGenNum() {
		return childCodeGenNum;
	}

	public void setChildCodeGenNum(String childCodeGenNum) {
		this.childCodeGenNum = childCodeGenNum;
	}

}
必需要将这个类型作为list类型的属性包装在 bean 中:
public class UidCodeGenNumParamFormList extends EntityBase {

	private List<UidCodeGenNumParam> uidCodeGenNumParamList;

	public List<UidCodeGenNumParam> getUidCodeGenNumParamList() {
		return uidCodeGenNumParamList;
	}

	public void setUidCodeGenNumParamList(
			List<UidCodeGenNumParam> uidCodeGenNumParamList) {
		this.uidCodeGenNumParamList = uidCodeGenNumParamList;
	}



}

在controller中,获取list參数:

@RequestMapping(value="/add")
	public Object addUidCode(@ModelAttribute UidCodeGenNumParamFormList genNumList,
			HttpServletRequest req,HttpServletResponse resp) throws Exception{
		for(UidCodeGenNumParam genNum:genNumList.getUidCodeGenNumParamList()){
			System.out.println(genNum.getSuperCodeGenNum()+";"+genNum.getChildCodeGenNum());
		}
		Map<String,Object> busResult  = uidCodeBusiness.add(req,genNumList);	  
	    return CommonUtils.controlResult(busResult, resp);
	}

springmvc 处理lsit类型的请求參数映射成实体属性

标签:mvc   exce   val   width   server   file   code   add   post   

原文地址:http://www.cnblogs.com/clnchanpin/p/7107351.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!