我对 ResponseEntity 有这样的问题。该函数返回这样的语句:
public ResponseEntity<User>
有些函数不返回用户类型,而是返回一些东西:
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
你怎么看上面的例子?
我对 ResponseEntity 有这样的问题。该函数返回这样的语句:
public ResponseEntity<User>
有些函数不返回用户类型,而是返回一些东西:
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
你怎么看上面的例子?