有RequestMapping:
@RequestMapping(
value = "/login",
method = RequestMethod.GET,
produces = MediaType.APPLICATION_JSON_VALUE
)
public UUID restMethod(String hashCredentials) throws SQLException {
System.out.println(hashCredentials + " | ");
UUID id = UUID.randomUUID();
//dbHandler.getAllUsers();
return id;
}
它总是回复 200。问题是如何更改 responseCode 并将必要的信息作为 json 添加到正文中。
您可以在其中返回
ResponseEntity
并包装一个对象:请参阅如何在 spring 中将 body 处理为 json