Is it possible to replace a ServletRegistration via servlet-api?
Following code can only register new Servlets for the given servlet name, but if a servlet with the name exist, it does nothing.
ServletContext.addServlet( "servletName", ServletClass.class );
So I'm searching for a possibility to replace the registration (other ServletClass by same name) or to remove one by name.