栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

如何在@ExceptionHandler(Spring REST)中获取@RequestBody

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

如何在@ExceptionHandler(Spring REST)中获取@RequestBody

你可以将请求主体对象引用到请求范围的Bean。然后将该请求范围的Bean注入你的异常处理程序中以检索请求主体(或你希望引用的其他请求上下文Bean)。

// @Component// @Scope("request")@ManagedBean@RequestScopepublic class RequestContext {    // fields, getters, and setters for request-scoped beans}@RestController@RequestMapping("/api/v1/persons")public class PersonController {    @Inject    private RequestContext requestContext;    @Inject    private PersonService personService;    @PostMapping    public Person savePerson(@RequestBody Person person) throws PersonServiceException {         requestContext.setRequestBody(person);         return personService.save(person);    }}@ControllerAdvicepublic class ExceptionMapper {    @Inject    private RequestContext requestContext;    @ExceptionHandler(PersonServiceException.class)    protected ResponseEntity<?> onPersonServiceException(PersonServiceException exception) {         Object requestBody = requestContext.getRequestBody();         // ...         return responseEntity;    }}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/385127.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号