本文介绍了@RestControllerAdvice和@ControllerAdvice的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

  • @RestControllerAdvice和@ControllerAdvice之间的主要区别是什么?
  • 我们是否应该始终将@RestControllerAdvice用于其余服务和@ControllerAdvice MVC?

推荐答案

@RestControllerAdvice只是@ControllerAdvice + @ResponseBody的语法糖,您可以查看此处.

@RestControllerAdvice is just a syntactic sugar for @ControllerAdvice + @ResponseBody, you can look here.

同样,如上所述,@ControllerAdvice甚至也可以用于REST Web服务,但是您需要另外使用@ResponseBody.

Again, as mentioned above, @ControllerAdvice can be used even for REST web services as well, but you need to additionally use @ResponseBody.

这篇关于@RestControllerAdvice和@ControllerAdvice的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-20 05:42