我有以下带有Spring Web
框架的简单Java
控制器:
@RestController
@RequestMapping("/rounds")
@Slf4j
public class RoundController {
private RoundService roundService;
@Autowired
public RoundController(RoundService roundService) {
this.roundService = roundService;
}
@GetMapping(
produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public List<Round> find() {
return roundService.find();
}
@GetMapping(
path = "/{userId}",
produces = MediaType.APPLICATION_JSON_VALUE)
@ResponseStatus(HttpStatus.OK)
public List<Round> get(@PathVariable String userId) {
return roundService.getRoundsByUserId(userId);
}
@PostMapping(
produces = MediaType.APPLICATION_JSON_VALUE
)
@ResponseStatus(HttpStatus.CREATED)
public Round create(@Valid @NotNull @RequestBody Round round) {
roundService.create(round);
return round;
}
@DeleteMapping(
path = "/{id}",
produces = MediaType.APPLICATION_JSON_VALUE
)
@ResponseStatus(HttpStatus.OK)
public void delete(@PathVariable String id) {
ObjectId objectId = new ObjectId(id);
roundService.delete(objectId);
}
}
使用Mongo
时,是否有为对象进行更新/修补的最佳实践?
是否最好只使用POST
方法,并使用用户所做的更改将 Round 对象重新保存在数据库中?
据我说,最佳做法不应该是使用 POST 进行更新/修补。
保持您的 POST 只执行回合创建。
如果您使用 spring data mongodb,只需使用您的实体调用存储库的 save 方法 见 https://docs.spring.io/spring-data/mongodb/docs/current/api/org/springframework/data/mongodb/repository/MongoRepository.html
对于更新,最好在控制器中添加 PUT/{roundId},然后:
- 如果您有所有 Round 数据,请调用您的保存方法
- 调用findById以获得完整的数据并设置要更改的数据,然后保存(但这更像是一个补丁(
或者您也可以添加一个补丁/{roundId} 并只更新文档中您想要的字段 见 https://docs.spring.io/spring-data/mongodb/docs/current/api/org/springframework/data/mongodb/core/MongoTemplate.html