if (welcomeFiles != null && target.endsWith("/")) {
for (String welcomeFile : welcomeFiles) {
String path = target;
path += welcomeFile;
Context context = _context.getServletContext();
URL resource = context.getResource(path);
if (resource != null) {
target = path;
baseRequest.setPathInfo(target);
_context.handle(target, baseRequest, request, response);
return;