While writing RESTful API calls, I got some urls which takes multiple path parameters. e.g. www.mydomain.com/exam/{examId}/subject/{subjectId}/section/{sectionId}/questions
Now, If I use any JAX-RS implementation (like Apache Wink) It is quite simple to get path parameters [ using @PathParam].
Do we have simple way to handle such calls in moqui?
Also, I checked <resource name="SomeName">...</resource>
, but In first look I find it complex and not sure with relevancy and limitations also.