Guide to use Restlet Swagger extension for GAE
问题 I tried to do a similar approach: public Restlet createInboundRoot() { Router apiRouter = createApiRouter(); attachSwaggerSpecificationRestlet(apiRouter, "/api-docs"); return apiRouter; } When /api-docs is access Restlet throws Error 404, what could be messing. The idea is that the apiRouter we have is fully working at this state, when we acess resource like /stuff etc. What could be missing in this code? Or is there any specific notes to take into consideration when using Restlet Swagger