cnblogs/dcrenl/Springboot 全局统一处理异常.html

22 lines
1.3 KiB
HTML
Raw Normal View History

2024-09-24 12:43:01 +08:00
<div class="cnblogs_code">
<pre><span style="color: #0000ff;">import</span><span style="color: #000000;"> org.springframework.web.bind.annotation.ControllerAdvice;
</span><span style="color: #0000ff;">import</span><span style="color: #000000;"> org.springframework.web.bind.annotation.ExceptionHandler;
</span><span style="color: #0000ff;">import</span><span style="color: #000000;"> org.springframework.web.bind.annotation.ResponseBody;
</span><span style="color: #008000;">/**</span><span style="color: #008000;">
* </span><span style="color: #808080;">@author</span><span style="color: #008000;"> dcrenl: 2020-10-12 19:47:39
</span><span style="color: #008000;">*/</span><span style="color: #000000;">
@ControllerAdvice
</span><span style="color: #0000ff;">public</span> <span style="color: #0000ff;">class</span><span style="color: #000000;"> GlobalExceptionHandler {
@ResponseBody
@ExceptionHandler(Exception.</span><span style="color: #0000ff;">class</span><span style="color: #000000;">)
</span><span style="color: #0000ff;">public</span><span style="color: #000000;"> String globalException(Exception ex) {
</span><span style="color: #0000ff;">return</span><span style="color: #000000;"> ex.getMessage();
}
}</span></pre>
</div>
<p>&nbsp;</p>
<p>本文参考https://www.cnblogs.com/magicalSam/p/7198420.html</p>