如何定义递归URL使用逻辑

时间:2020-05-09 17:45:35

标签: spring-boot api rest

假设我的实体之间存在以下关系:

员工有很多汽车,汽车有很多车轮,车轮有一个制造商, 制造商有很多员工。

使用Spring Boot Rest API动态地公开的最佳方法是什么?

/users/{id}

/users/{id}/wheels

/users/{id}/wheels/{id}/manufacturer/{id}/employees/{id}/

/users/{id}/wheels/{id}/manufacturer/{id}/employees/{id}/wheels/{id}/

为了获得以下端点并使用提到的URL,我可以实现什么适当的体系结构/逻辑?

0 个答案:

没有答案