You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@juneau.apache.org by "James Bognar (JIRA)" <ji...@apache.org> on 2019/06/26 00:54:00 UTC

[jira] [Resolved] (JUNEAU-97) Path Parameter in Parent RestResource

     [ https://issues.apache.org/jira/browse/JUNEAU-97?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James Bognar resolved JUNEAU-97.
--------------------------------
       Resolution: Fixed
    Fix Version/s:     (was: 8.0.0)
                   8.0.1

Added support in 8.0.1.

> Path Parameter in Parent RestResource
> -------------------------------------
>
>                 Key: JUNEAU-97
>                 URL: https://issues.apache.org/jira/browse/JUNEAU-97
>             Project: Juneau
>          Issue Type: Improvement
>    Affects Versions: 8.0.0
>            Reporter: Harish B N
>            Assignee: James Bognar
>            Priority: Major
>             Fix For: 8.0.1
>
>
> I would like to have a way to specify path param as part of the parent Resource.
> Eg. I have a parent resource teachers 
> GET /teachers  
> GET /teachers/john
> Now I want to build a child resource called students (for the teacher: john)
> GET /teachers/john/students
>  
> is this something possible using parent-child resource mapping, with @RestResource parent as path /teachers/\{teacherId} 
> And have a children Resource be able to pick up the teacherId. Child resource defined as
> path /students
>  
> Eg. Code:
> {code:java}
> // TeacherResource.java - Parent Resource 
> @RestResource(
>         path="/teacher/{teacherId}",
>         title="Teacher Resource ",
>         children={
>                 StudentsResource.class
>         }
> )
> {code}
> and then have a child resource
> {code:java}
> // StudentsResource.java
> @RestResource(
>         path="/students",
>         title="Students",
>         description="Students Related API endpoints",
> )
> // ....
> // with method like below, it would be great if we can pick up teacherId param from it's parent resource
> public List getStudents(@Path("teacherId") String teacherId) {
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)