https://bz.apache.org/bugzilla/show_bug.cgi?id=64735

--- Comment #4 from Kyle Stiemann <[email protected]> ---
The test app is pretty simple and basically includes one valid JSP called
add-jsp-file.jsp and the following ServletContainerInitializer:

```
public final class AddJspFileInitializer implements ServletContainerInitializer
{
  @Override
  public final void onStartup(final Set<Class<?>> annotatedClasses, final
ServletContext servletContext) {
    servletContext
        .addJspFile("AddJspFile", "/WEB-INF/classes/add-jsp-file.jsp")
        .addMapping("/");
  }
}
```

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to