当前位置: 首页>>代码示例>>Java>>正文


Java SqlMapClasspathEntityResolver类代码示例

本文整理汇总了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);
  }
}
 
开发者ID:mybatis,项目名称:ibatis-2,代码行数:12,代码来源:SqlMapClasspathEntityResolverTest.java

示例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);
  }
}
 
开发者ID:mybatis,项目名称:ibatis-2,代码行数:12,代码来源:SqlMapClasspathEntityResolverTest.java

示例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);
	}
}
 
开发者ID:pister,项目名称:wint,代码行数:28,代码来源:AutoLoadSqlMapClientFactoryBean.java


注:本文中的com.ibatis.sqlmap.engine.builder.xml.SqlMapClasspathEntityResolver类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。