本文整理汇总了Java中org.apache.tomcat.util.descriptor.XmlErrorHandler类的典型用法代码示例。如果您正苦于以下问题:Java XmlErrorHandler类的具体用法?Java XmlErrorHandler怎么用?Java XmlErrorHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
XmlErrorHandler类属于org.apache.tomcat.util.descriptor包,在下文中一共展示了XmlErrorHandler类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: tldScanStream
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
private XmlErrorHandler tldScanStream(InputStream resourceStream)
throws IOException {
InputSource source = new InputSource(resourceStream);
XmlErrorHandler result = new XmlErrorHandler();
synchronized (tldDigester) {
try {
tldDigester.setErrorHandler(result);
tldDigester.push(this);
tldDigester.parse(source);
} catch (SAXException s) {
// Hack - makes exception handling simpler
throw new IOException(s);
} finally {
tldDigester.reset();
}
return result;
}
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:22,代码来源:TldConfig.java
示例2: tldScanStream
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
private XmlErrorHandler tldScanStream(InputStream resourceStream) throws IOException {
InputSource source = new InputSource(resourceStream);
XmlErrorHandler result = new XmlErrorHandler();
synchronized (tldDigester) {
try {
tldDigester.setErrorHandler(result);
tldDigester.push(this);
tldDigester.parse(source);
} catch (SAXException s) {
// Hack - makes exception handling simpler
throw new IOException(s);
} finally {
tldDigester.reset();
}
return result;
}
}
开发者ID:how2j,项目名称:lazycat,代码行数:21,代码来源:TldConfig.java
示例3: parse
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
public void parse(URL url) throws IOException, SAXException {
try (InputStream is = url.openStream()) {
XmlErrorHandler handler = new XmlErrorHandler();
digester.setErrorHandler(handler);
digester.push(this);
InputSource source = new InputSource(url.toExternalForm());
source.setByteStream(is);
digester.parse(source);
if (!handler.getWarnings().isEmpty() || !handler.getErrors().isEmpty()) {
handler.logFindings(log, source.getSystemId());
if (!handler.getErrors().isEmpty()) {
// throw the first to indicate there was a error during processing
throw handler.getErrors().iterator().next();
}
}
} finally {
digester.reset();
}
}
开发者ID:nkasvosve,项目名称:beyondj,代码行数:22,代码来源:TagPluginParser.java
示例4: doTestValidateVersion
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
private void doTestValidateVersion(String version) throws IOException, SAXException {
WebXml webxml = new WebXml();
// Special cases
if ("2.2".equals(version)) {
webxml.setPublicId(XmlIdentifiers.WEB_22_PUBLIC);
} else if ("2.3".equals(version)) {
webxml.setPublicId(XmlIdentifiers.WEB_23_PUBLIC);
} else {
webxml.setVersion(version);
}
// Merged web.xml that is published as MERGED_WEB_XML context attribute
// in the simplest case consists of webapp's web.xml file
// plus the default conf/web.xml one.
Set<WebXml> defaults = new HashSet<WebXml>();
defaults.add(getDefaultWebXmlFragment());
webxml.merge(defaults);
Digester digester = DigesterFactory.newDigester(true, true, new WebRuleSet(), true);
XmlErrorHandler handler = new XmlErrorHandler();
digester.setErrorHandler(handler);
InputSource is = new InputSource(new StringReader(webxml.toXml()));
WebXml webxmlResult = new WebXml();
digester.push(webxmlResult);
digester.parse(is);
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
Assert.assertEquals(version, webxml.getVersion());
Assert.assertEquals(version, webxmlResult.getVersion());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:36,代码来源:TestWebXml.java
示例5: testWebapp_2_2
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
@Test
public void testWebapp_2_2() throws Exception {
XmlErrorHandler handler = new XmlErrorHandler();
Digester digester = DigesterFactory.newDigester(
true, true, new WebRuleSet(false), true);
digester.setErrorHandler(handler);
digester.push(new WebXml());
WebXml desc = (WebXml) digester.parse(
new File("test/webapp-2.2/WEB-INF/web.xml"));
Assert.assertEquals("2.2", desc.getVersion());
Assert.assertEquals(XmlIdentifiers.WEB_22_PUBLIC, desc.getPublicId());
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:15,代码来源:TestSchemaValidation.java
示例6: testWebapp_2_3
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
@Test
public void testWebapp_2_3() throws Exception {
XmlErrorHandler handler = new XmlErrorHandler();
Digester digester = DigesterFactory.newDigester(
true, true, new WebRuleSet(false), true);
digester.setErrorHandler(handler);
digester.push(new WebXml());
WebXml desc = (WebXml) digester.parse(
new File("test/webapp-2.3/WEB-INF/web.xml"));
Assert.assertEquals("2.3", desc.getVersion());
Assert.assertEquals(XmlIdentifiers.WEB_23_PUBLIC, desc.getPublicId());
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:15,代码来源:TestSchemaValidation.java
示例7: testWebapp_2_4
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
@Test
public void testWebapp_2_4() throws Exception {
XmlErrorHandler handler = new XmlErrorHandler();
Digester digester = DigesterFactory.newDigester(
true, true, new WebRuleSet(false), true);
digester.setErrorHandler(handler);
digester.push(new WebXml());
WebXml desc = (WebXml) digester.parse(
new File("test/webapp-2.4/WEB-INF/web.xml"));
Assert.assertEquals("2.4", desc.getVersion());
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:14,代码来源:TestSchemaValidation.java
示例8: testWebapp_2_5
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
@Test
public void testWebapp_2_5() throws Exception {
XmlErrorHandler handler = new XmlErrorHandler();
Digester digester = DigesterFactory.newDigester(
true, true, new WebRuleSet(false), true);
digester.setErrorHandler(handler);
digester.push(new WebXml());
WebXml desc = (WebXml) digester.parse(
new File("test/webapp-2.5/WEB-INF/web.xml"));
Assert.assertEquals("2.5", desc.getVersion());
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:14,代码来源:TestSchemaValidation.java
示例9: testWebapp_3_0
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
@Test
public void testWebapp_3_0() throws Exception {
XmlErrorHandler handler = new XmlErrorHandler();
Digester digester = DigesterFactory.newDigester(
true, true, new WebRuleSet(false), true);
digester.setErrorHandler(handler);
digester.push(new WebXml());
WebXml desc = (WebXml) digester.parse(
new File("test/webapp-3.0/WEB-INF/web.xml"));
Assert.assertEquals("3.0", desc.getVersion());
Assert.assertEquals(0, handler.getErrors().size());
Assert.assertEquals(0, handler.getWarnings().size());
}
开发者ID:liaokailin,项目名称:tomcat7,代码行数:14,代码来源:TestSchemaValidation.java
示例10: tldScanDir
import org.apache.tomcat.util.descriptor.XmlErrorHandler; //导入依赖的package包/类
private void tldScanDir(File start) {
if (log.isTraceEnabled()) {
log.trace(sm.getString("tldConfig.dirScan", start.getAbsolutePath()));
}
File[] fileList = start.listFiles();
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
// Scan recursively
if (fileList[i].isDirectory()) {
tldScanDir(fileList[i]);
} else if (fileList[i].getAbsolutePath().endsWith(TLD_EXT)) {
InputStream stream = null;
try {
stream = new FileInputStream(fileList[i]);
XmlErrorHandler handler = tldScanStream(stream);
handler.logFindings(log, fileList[i].getAbsolutePath());
} catch (IOException ioe) {
log.warn(sm.getString("tldConfig.dirFail",
fileList[i].getAbsolutePath()),
ioe);
} finally {
if (stream != null) {
try {
stream.close();
} catch (Throwable t) {
ExceptionUtils.handleThrowable(t);
}
}
}
}
}
}
}
开发者ID:deathspeeder,项目名称:class-guard,代码行数:36,代码来源:TldConfig.java
注:本文中的org.apache.tomcat.util.descriptor.XmlErrorHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论