trying path solution

This commit is contained in:
Luca Frosini 2022-09-26 14:45:48 +02:00
parent 9636ce2206
commit fdba5aaa6b
1 changed files with 2 additions and 2 deletions

View File

@ -17,13 +17,13 @@ import org.slf4j.LoggerFactory;
/**
* @author Luca Frosini (ISTI-CNR)
*/
@Path("docs")
//@Path("docs")
public class Docs {
private static Logger logger = LoggerFactory.getLogger(Docs.class);
@GET
@Path("{any:.*}")
@Path("docs{any:/{0,1}.*}")
public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException {
logger.trace("Called method to redirect to docs/index.html");