SpringBoot注解大全( 三 )


@PathVariable:路径变量 。如
RequestMapping(“user/get/mac/{macAddress}”)public String getByMacAddress(@PathVariable String macAddress){ //do something;}参数与大括号里的名字一样要相同 。
五、全局异常处理@ControllerAdvice:包含@Component 。可以被扫描到 。统一处理异常 。
@ExceptionHandler(Exception.class):用在方法上面表示遇到这个异常就执行以下方法 。

【SpringBoot注解大全】


推荐阅读