覆盖标准的Spring Data REST API

时间:2017-09-03 17:29:59

标签: java spring rest spring-mvc spring-data-rest

我的应用中有一个实体User。 Spring Data REST为我提供了标准端点:

`GET`    /user
`GET`    /user/<id>
`POST`   /user
`PUT`    /user
`PATCH`  /user
`DELETE` /user/<id>

我需要覆盖DELETE端点的默认行为,而不是更改端点网址/user。如果我向控制器添加以下内容:

@Controller
@RequestMapping("/user")
public class User {

    @DeleteMapping("/{id}")
    @CrossOrigin
    public ResponseEntity<?> delete(@PathVariable("id") final String id) {
        userService.delete(id); // in service I remove user with other 
        return ResponseEntity.ok().build();
    }

    // other custom endpoints

}

我发现其他标准REST端点不起作用 - 我总是收到405错误。所以,我的问题是 - 如何自定义此端点而不影响其他端点? (我知道如何在@RepositoryEventHandler中执行此操作 - 但在我的情况下我应该避免这种情况)

1 个答案:

答案 0 :(得分:3)

你读过这个:Overriding Spring Data REST Response Handlers

@RepositoryRestController
@RequestMapping("/users") // or 'user'? - check this...
public class UserController {

    @Autoware 
    private UserRepo userRepo;

    @Transactional 
    @DeleteMapping("/{id}") 
    public ResponseEntity<?> delete(@PathVariable("id") String id) { // or Long id?..

        // custom logic

        return ResponseEntity.noContent().build();
    }
}

但是,如果您想添加额外的业务逻辑来删除流程,您甚至不需要实现自定义控制器,您可以使用自定义event handler

@Component
@RepositoryEventHandler(User.class) 
public class UserEventHandler {

  @Autoware 
  private UserRepo userRepo;

  @BeforeDeleteEvent
  public void beforeDelete(User u) {
    //...
    if (/* smth. wrong */) throw new MyException(...);
  }
}