我在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上工作?
1条答案
按热度按时间xghobddn1#
该问题与springboot控制器无关。检查您的heroku配置,如下所示。