本文整理汇总了Java中com.ibatis.sqlmap.engine.builder.xml.SqlMapClasspathEntityResolver类的典型用法代码示例。如果您正苦于以下问题:Java SqlMapClasspathEntityResolver类的具体用法?Java SqlMapClasspathEntityResolver怎么用?Java SqlMapClasspathEntityResolver使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SqlMapClasspathEntityResolver类属于com.ibatis.sqlmap.engine.builder.xml包,在下文中一共展示了SqlMapClasspathEntityResolver类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: assertSystemIdCanBeResolved
import com.ibatis.sqlmap.engine.builder.xml.SqlMapClasspathEntityResolver; //导入依赖的package包/类
private void assertSystemIdCanBeResolved(String id) {
SqlMapClasspathEntityResolver resolver = new SqlMapClasspathEntityResolver();
try {
InputSource source = resolver.resolveEntity(null, id);
if (source == null) {
throw new RuntimeException("Could not resolve System ID " + id);
}
} catch (SAXException e) {
throw new RuntimeException("Error. Cause: " + e, e);
}
}
示例2: assertPublicIdCanBeResolved
import com.ibatis.sqlmap.engine.builder.xml.SqlMapClasspathEntityResolver; //导入依赖的package包/类
private void assertPublicIdCanBeResolved(String id) {
SqlMapClasspathEntityResolver resolver = new SqlMapClasspathEntityResolver();
try {
InputSource source = resolver.resolveEntity(id, null);
if (source == null) {
throw new RuntimeException("Could not resolve System ID " + id);
}
} catch (SAXException e) {
throw new RuntimeException("Error. Cause: " + e, e);
}
}
示例3: getSqlmapsImpl
import com.ibatis.sqlmap.engine.builder.xml.SqlMapClasspathEntityResolver; //导入依赖的package包/类
private MagicList<LastModifiedFile> getSqlmapsImpl(InputStream is) {
try {
DocumentBuilderFactory documentBuilderFactory = DocumentBuilderFactory.newInstance();
documentBuilderFactory.setNamespaceAware(true);
DocumentBuilder builder = documentBuilderFactory.newDocumentBuilder();
builder.setEntityResolver(new SqlMapClasspathEntityResolver());
Document document = builder.parse(is);
NodeList sqlmapNodes = (NodeList) sqlmapExpr.evaluate(document, XPathConstants.NODESET);
MagicList<LastModifiedFile> newMappingLocations = MagicList.newList();
if (sqlmapNodes == null) {
return newMappingLocations;
}
for (int i = 0, len = sqlmapNodes.getLength(); i < len; ++i) {
Node node = sqlmapNodes.item(i);
String location = XMLParseUtil.getAttribute(node, "resource");
Resource resource = resourceLoader.getResource(location);
File file = resource.getFile();
long lastModified = file.lastModified();
LastModifiedFile lmf = new LastModifiedFile(lastModified, file);
newMappingLocations.add(lmf);
}
return newMappingLocations;
} catch (Exception e) {
throw new RuntimeException(e);
}
}