出现意外错误(类型=错误请求,状态=400)

pjngdqdw  于 2021-08-20  发布在  Java
关注(0)|答案(1)|浏览(357)

我在heroku上托管了一个springboot应用程序。构建和部署工作得非常好。但是,每当我想要访问该方法时,我都会看到这个错误。 There was an unexpected error (type=Bad Request, status=400). 如果我使用loclhost,但使用heroku的应用程序时抛出错误,那么它在postman上运行得非常好。
下面是控制器的外观。我猜这就是问题的根源。
.

..
@Slf4j
@RestController
@RequestMapping("/api/v1/")
public class UserController {
    @Autowired
    UserService userService;

    @RequestMapping(value = "/addUser")
    public ResponseEntity<AddResponseDTO> addUser(@RequestBody AddUserDTO addUserDTO) throws ApplicationException {
        AddResponseDTO response = userService.saveUser(addUserDTO);
        return ResponseEntity.ok(response);
    }

}

你认为我能做什么让api在heroku上工作?

xghobddn

xghobddn1#

该问题与springboot控制器无关。检查您的heroku配置,如下所示。

=== <app_name>
Git Url:       git@heroku.com:<app_name>.git
Web Url:       https://<app_name>.herokuapp.com/

相关问题