@RequestMapping("/list")
@ResponseBody
//实现商品分类目录展现
public List<EasyUITree> findItemCatById(Long id){
//查询一级商品分类目录
if(id==null||id.equals(""))
id=0L;
Long parentId=id;
return ItemCatService.findItemCatById(parentId);
}
等价写法
/**
* defaultValue= 如果没有传递参数 默认值为,
* required=true/false 默认为false 如果为true必须传递参数
* value= 需要转化变量的名称
* @param parentId
* @return
*/
@RequestMapping("/list")
@ResponseBody
//实现商品分类目录展现
public List<EasyUITree> findItemCatById(@RequestParam(value="id",defaultValue="0") Long parentId){
//查询一级商品分类目录
return ItemCatService.findItemCatById(parentId);
}