@RequestMapping("/path/{id}/{type}")
public ModelAndView path(@PathVariable(required = false) int id,
@PathVariable(required = false) String type){
if(null!=type&&type.equals("苹果")){
}
System.out.println("id="+id);
System.out.println("type="+type);
ModelAndView view = new ModelAndView(PAGE);
view.addObject("id",id);
return view;
}