Springboot:PathVariable验证,其中条件{variable}.isBlank/{variable}.isEmpty不起作用

lstz6jyr  于 2024-01-06  发布在  Spring
关注(0)|答案(2)|浏览(137)

我有一个控制器,我想验证PathVariable,它不能为null。例如,http://localhost:8080/api/details/pathred-timeoff/,我想验证此路径中“/”后面的路径变量。
我在这里有一个控制器,我想在这里抛出带有错误消息的Exception。

  1. @RestController
  2. @CrossOrigin("*")
  3. @RequestMapping("/api/details")
  4. public class DetailsController {
  5. @Autowired
  6. DetailsService detailsService;
  7. @Autowired
  8. OvertimeService overtimeService;
  9. // TESTING HERE!!!!
  10. @GetMapping("/expired-timeoff/{empNo}")
  11. public List<Details> getExpiredTimeOffBalancesByUser(@PathVariable String empNo) {
  12. if (empNo.isBlank() || empNo.isEmpty() || empNo.trim().equals("a")) {
  13. throw new InvalidArgumentException("Error Message");
  14. }
  15. return detailsService.findExpiredTimeOffBalancesByCreatedBy(empNo);
  16. }
  17. }

字符串
同时,当我从“http://localhost:8080/api/details/datared-timeoff/a”获取时,我可以输入条件并捕获InvalidArgumentException消息Successfully catch my exception
当我从“http://localhost:8080/api/details/whitelabel-timeoff/"获取时,它只会返回默认的Whitelabel 404错误Exception not catched
我做了一些研究,它是说,路径变量不能为空,但我可以做什么,以提示InvalidArgumentException,如果用户不小心使路径变量“空”?
这是我的@RestControllerAdvise文件

  1. package com.sicmsb.timeofftracker.controller.Advice;
  2. import org.springframework.http.HttpStatus;
  3. import org.springframework.web.bind.annotation.ExceptionHandler;
  4. import org.springframework.web.bind.annotation.ResponseStatus;
  5. import org.springframework.web.bind.annotation.RestControllerAdvice;
  6. import org.springframework.web.client.HttpClientErrorException;
  7. import com.sicmsb.timeofftracker.exceptions.ResourceNotFoundException;
  8. import com.sicmsb.timeofftracker.exceptions.InvalidArgumentException;
  9. @RestControllerAdvice
  10. public class RequestExceptionHandler {
  11. @ResponseStatus(HttpStatus.NOT_FOUND) //404
  12. @ExceptionHandler(ResourceNotFoundException.class)
  13. public String notFound(Exception e) {
  14. //e.printStackTrace();
  15. return e.getMessage();
  16. }
  17. @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) //500
  18. @ExceptionHandler({RuntimeException.class, Exception.class})
  19. public String internalError(Exception e) {
  20. e.printStackTrace();
  21. return "error/internal_error";
  22. }
  23. @ResponseStatus(HttpStatus.BAD_REQUEST) //400
  24. @ExceptionHandler({InvalidArgumentException.class})
  25. public String badRequest(Exception e) {
  26. return e.getMessage();
  27. }
  28. }


最新消息:看起来我可以像这样处理这个错误。有没有什么方法可以让我只使用一个函数来处理所有的错误?尝试了String.utils(empNo)和empNo==null,仍然没有进入条件。

  1. // Handles cases where empNo is NOT provided
  2. @GetMapping("/expired-timeoff/")
  3. public List<Details> getExpiredTimeOffBalancesByUser() {
  4. throw new InvalidArgumentException("Error Message2");
  5. }

pbwdgjma

pbwdgjma1#

你可以这样做:

  1. @GetMapping({"/expired-timeoff/", "/expired-timeoff/{empNo}"})
  2. public List<Details> getExpiredTimeOffBalancesByUser(@PathVariable(required=false) String empNo) {
  3. // test if empNo is null
  4. }

字符串

juzqafwq

juzqafwq2#

尝试在IF语句中添加一个条件,以检查empNo是否为null。

  1. if (empNo == null || empNo.isBlank() || empNo.isEmpty() || empNo.trim().equals("a"))
  2. {
  3. throw new InvalidArgumentException("Error Message");
  4. }

字符串

相关问题