servlet registration at runtime

awesome! did you have a look at the servlet 3.0 API PD? I did not yet, but was amazed to see something like this:  Java |  copy |? public void contextInitialized(ServletContextEvent sce) { ServletContext sc = sce.getServletContext();  ServletRegistration sr = sc.addServlet("NewServlet", "test.NewServlet"); sr.setInitParameter("servletInitName", "servletInitValue"); sc.addServletMapping("NewServlet", new String[] {"/newServlet"}); } full article wonder, if servlets and filters can be removed [...]