Restoring situation

This commit is contained in:
Luca Frosini 2022-09-26 12:36:47 +02:00
parent 50fea5ba56
commit e771cdda4c
1 changed files with 3 additions and 21 deletions

View File

@ -21,9 +21,10 @@ import org.slf4j.LoggerFactory;
public class Docs {
private static Logger logger = LoggerFactory.getLogger(Docs.class);
@GET
public InputStream toDoc1(@Context HttpServletRequest req) throws WebApplicationException {
@Path("{any: .*}")
public InputStream toDoc(@Context HttpServletRequest req) throws WebApplicationException {
logger.trace("Called method to redirect to docs/index.html");
String pathInfo = req.getPathInfo();
@ -33,25 +34,6 @@ public class Docs {
pathInfo += "/index.html";
}
logger.info("redirecting to {}", pathInfo);
String realPath = req.getServletContext().getRealPath(pathInfo);
return new FileInputStream(new File(realPath));
} catch (Exception e) {
throw new InternalServerErrorException(e);
}
}
@GET
@Path("{any: .*}")
public InputStream toDoc2(@Context HttpServletRequest req) throws WebApplicationException {
logger.trace("Called method to redirect to docs/index.html");
String pathInfo = req.getPathInfo();
try {
if (pathInfo.endsWith("/docs/")) {
pathInfo += "index.html";
}