@RestControllerAdvice vs @ControllerAdvice

后端 未结 3 1845
孤独总比滥情好
孤独总比滥情好 2020-12-14 07:03
  • What are the major difference between @RestControllerAdvice and @ControllerAdvice ??
  • Is it we should always use @RestControllerAdvice for rest services and @C
3条回答
  •  独厮守ぢ
    2020-12-14 07:48

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

    Is it we should always use @RestControllerAdvice for rest services and @ControllerAdvice MVC?

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

提交回复
热议问题