public static void removeURLMappings(final WebApp webApp, final Servlet servlet) {
List mappings = webApp.getServletMappings();
String servletName = servlet.getServletName();
if (servletName != null) {
for (int i=mappings.size()-1;i>=0;--i){
ServletMapping mapping = (ServletMapping)mappings.get(i);
if (mapping != null &&
mapping.getServlet() != null &&
mapping.getServlet().getServletName() != null &&
mapping.getServlet().getServletName().trim()
.equals(servletName)) {
mappings.remove(mapping);
}
}
}