public ServletRegistry(ServletContext servletContext) {
this.containerContext = servletContext;
ReadWriteLock lock = new ReentrantReadWriteLock();
readLock = lock.readLock();
writeLock = lock.writeLock();
this.alias2Registration = new HashMap();
this.servlet2Registration = new HashMap();
this.http2Servlet = new HashMap();