public class ParentController {
@RequestMapping("/parentMethod")
public void parentMethod() { }
}
@Controller
@RequestMapping("/typeLevelPath")
public class ChildController extends ParentController {
@RequestMapping("/childMethod")
public void childMethod() { }
}
This is a continuation of the discussion in https://github.com/fabiomaffioletti/jsondoc/issues/225.
To summarize, assuming the following situation:
Spring generates the following API:
/typeLevelPath/childMethod
/typeLevelPath/parentMethod
While Livedoc would document:
/typeLevelPath/childMethod
/parentMethod