摘要: 1.局部异常处理:在Controller类中(控制层)添加方法。方法有注解@ExceptionHandlerl来局部处理异常。 /* * 局部处理异常 */ @ExceptionHandler public ModelAndView error(Exception exception) { Mode 阅读全文
posted @ 2019-09-05 21:03 kfsrex 阅读(122) 评论(0) 推荐(0) 编辑
摘要: RESTful风格特点: RESTful的各种用法: /* * RESTful风格 * user/1 * value="{uid}":接收网页传的参数uid * method=RequestMethod.GET:处理get请求 * @PathVariable("uid") String id:把ui 阅读全文
posted @ 2019-09-05 20:56 kfsrex 阅读(131) 评论(0) 推荐(0) 编辑