gpt4 book ai didi

spring-mvc - SonarQube 提示将 ResponseEntity 与通配符一起使用

转载 作者:行者123 更新时间:2023-12-04 03:11:26 25 4
gpt4 key购买 nike

我使用 SpringBoot 进行 REST Web 服务开发,使用 SonarQube 进行静态分析。

我的应用程序中有一些端点如下所示:

@PostMapping
ResponseEntity<?> addSomething(@RequestBody Some object) {
// some code there
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}

SonarQube 提示将 ResponseEntity 与通配符一起使用,向我报告了 严重问题“不应在返回参数中使用通用通配符类型” .

我想知道我是否应该在 SonarQube 中禁用此验证,或者为这些情况提出不同的返回类型。

你怎么看待这件事?

最佳答案

@PostMapping
ResponseEntity<Object> addSomething(@RequestBody Some object) {
// some code there
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}
这也将消除错误。它仍然非常通用,但是如果您想根据结果返回不同的类型,它是一种解决方案。例如:
@PostMapping
ResponseEntity<Object> addSomething(@RequestBody Some object) {

//Will return ResponseEntity<> with errors
ResponseEntity<Object> errors = mapValidationService(bindingResult);
if (!ObjectUtils.isEmpty(errors)) return errors;

// some code there
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}

关于spring-mvc - SonarQube 提示将 ResponseEntity 与通配符一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44974384/

25 4 0