@PutMapping("/createUser")
public String createUser(@RequestBody User user) {
User thisValue = repository.findByUsername(user.getUsername());
if thisValue != null {
sendResponseHeaders(400, -1); // wont work
return "account exist";
}
sendResponseHeaders(200, -1); // wont work
return "reached here";
}
我之前使用的 com.sun.httpserver 有一个 sendResponseheaders 方法,但我在 springboot 上找不到它。有什么办法可以实现这一点吗?基本上就是我想要的。如果我发送带有存在的用户名的 json 请求正文,则应发生 400 响应错误
九州编程
LEATH
catspeake
相关分类