368369370371372373374375
* Initialize the web.xml */ protected void initializeWebXml () { if (this.webXml == null) { URL webXmlURL = this.resolver.getResource("WEB-INF/web.xml"); this.webXml = webXmlURL == null ? new WebXml() : WebXml.getInstance(webXmlURL); } }