如何使用Spring进行子资源?

时间:2017-10-31 08:17:57

标签: spring rest

我和Spring一起工作。我怎样才能像JAX-RS一样进行子资源?

@RestController("parents")
public class ParentsController {
}

@RestController("children")
public class ChildrenController {
}

有什么简单的方法可以使用Spring吗?这样我就可以做到了吗?

ParentsController控制。

/parents
/parents/{id}

ChildrenController控制。

/parents/{id}/children
/parents/{id}/children/{id}

修改

这个问题的另一个目的是让ChildrenController在多个请求映射上可用,这样我也可以这样做

/children
/children/{id}

0 个答案:

没有答案