no message

This commit is contained in:
Sola
2016-03-25 05:28:33 +08:00
parent 1dcd07c137
commit b8bdca7b37

View File

@@ -70,13 +70,18 @@ public class APIRouter extends HttpServlet {
if (api == null) { if (api == null) {
// resp.sendError(HttpServletResponse.SC_FORBIDDEN); // resp.sendError(HttpServletResponse.SC_FORBIDDEN);
// obj = nodes; // obj = nodes;
ClassPath path = ClassPath.from(getServletContext().getClassLoader());
obj = new Object[]{ obj = new Object[]{
Thread.currentThread().getContextClassLoader().toString(), Thread.currentThread().getContextClassLoader().toString(),
getServletContext().getClassLoader().toString(), getServletContext().getClassLoader().toString(),
getClass().getClassLoader().toString(), getClass().getClassLoader().toString(),
getClass().getPackage().getName(), getClass().getPackage().getName(),
API.class.getClassLoader().toString(), API.class.getClassLoader().toString(),
CheckSession.class.getClassLoader().toString() CheckSession.class.getClassLoader().toString(),
path.getResources().toString(),
path.getTopLevelClassesRecursive(getClass().getPackage().getName()),
path.getAllClasses()
}; };
return; return;
} }