本文主要是介绍jeefast 传递多个不同类型参数到map文件 (类集和普通变量),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
jeefast 传递多个不同类型参数到map文件 (类集和普通变量)
在jeefast 或者其他框架的时候 经常会遇到需要传多个值而且还不停类型的,那怎么办呢???
以修改状态为例:0:显示 1:隐藏
控制器:
/***状态通知*/@Log("状态通知")@RequestMapping("/zt")@RequiresPermissions("platform:notice:zt")public R zt(@RequestBody Long[] noticeIds){//pfNoticeService.updateBatch(noticeIds);for (int i = 0; i < noticeIds.length; i++) {PfNotice pfNotice=pfNoticeService.selectById(noticeIds[i]);List<Long> ids=new ArrayList<Long>();Integer id=0;if (pfNotice.getXs()==0) { id=1; }for (int j = 0; j < noticeIds.length; j++) {ids.add(noticeIds[i]);}pfNoticeService.updateBath(ids,id);}return R.ok();}
其中ids是要修改的id号,id是状态,
service:
void updateBath(List<? extends Serializable> ids, Integer id);
impl:
@Overridepublic void updateBath(List<? extends Serializable> ids, Integer id) {Map<String, Object> map=new HashMap<String, Object>();map.put("ids", ids);map.put("id", id);pfNoticeDao.updateBath(map);}
dao:
void updateBath(Map<String, Object> map);
xml:
<update id="updateBath">UPDATE pf_notice SET xs=#{id}WHERE id in<foreach item="ids" collection="ids" open="(" separator="," close=")">#{ids}</foreach>
</update>
这样就可以实现同时改变多个的状态,
如果在控制器中通过for循环一个个的修改状态也能实现但是在效率方面,远不如这种方法
这篇关于jeefast 传递多个不同类型参数到map文件 (类集和普通变量)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!