当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
Posted 城南少年与猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法相关的知识,希望对你有一定的参考价值。
当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法
主要用在Controller层
@ExceptionHandler(RuntimeException.class) public String ex() { //这个是当spring跑出异常时出现的页面 return "redirect:/unauthorized.jsp"; }
以上是关于当spring抛出异常时出现的页面的@ExceptionHandler(RuntimeException.class) 用法的主要内容,如果未能解决你的问题,请参考以下文章