0

当我尝试显示指定用户的假期时。我有

 URL: localhost:8080/api/user -> this getting me all users.

 localhost:8080/api/user/userId (like 22)/vacation -> this should be getting me all Vacations for this user.

我在有这个方法的地方创建了 VacationController

@GetMapping("/api/user/{userId}/vacation")
public Vacation getVacations(@PathVariable Long userId) {
    return vacationService.findAllByUserId(userId);
}

在我的服务中,这个方法回答了 Repository,它有:

@Repository
public interface VacationRepository extends JpaRepository<Vacation, Long> {
Vacation findAllByUserId(Long userId);
}

根据我在互联网上的研究,我已经正确编码,但它不起作用。我究竟做错了什么?

4

1 回答 1

0

您所说的“它不起作用”是什么意思?任何错误代码,什么?

尝试改变:

 Vacation findAllByUserId(Long userId);

到(findAll 返回集合):

List<Vacation> findAllByUserId(Long userId);
于 2018-07-11T14:14:35.137 回答