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


Java ClassPathResource.exists方法代码示例

本文整理汇总了Java中org.springframework.core.io.ClassPathResource.exists方法的典型用法代码示例。如果您正苦于以下问题:Java ClassPathResource.exists方法的具体用法?Java ClassPathResource.exists怎么用?Java ClassPathResource.exists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.springframework.core.io.ClassPathResource的用法示例。


在下文中一共展示了ClassPathResource.exists方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: checkGrouperAttributes

import org.springframework.core.io.ClassPathResource; //导入方法依赖的package包/类
@Test
public void checkGrouperAttributes() {
    final ClassPathResource resource = new ClassPathResource("grouper.client.properties");
    if (resource.exists()) {
        final GrouperRegisteredServiceAccessStrategy strategy = new GrouperRegisteredServiceAccessStrategy();
        final Map<String, Set<String>> requiredAttributes = new HashMap<>();
        requiredAttributes.put("memberOf", Collections.singleton("admin"));
        strategy.setRequiredAttributes(requiredAttributes);
        strategy.doPrincipalAttributesAllowServiceAccess("banderson", (Map) TestUtils.getTestAttributes());
    } else {
        logger.info("{} is not configured. Skipping tests", resource.getFilename());
    }
}
 
开发者ID:hsj-xiaokang,项目名称:springboot-shiro-cas-mybatis,代码行数:14,代码来源:GrouperRegisteredServiceAccessStrategyTests.java

示例2: checkGrouperAttributes

import org.springframework.core.io.ClassPathResource; //导入方法依赖的package包/类
@Test
public void checkGrouperAttributes() {
    final ClassPathResource resource = new ClassPathResource("grouper.client.properties");
    if (resource.exists()) {
        final GrouperRegisteredServiceAccessStrategy strategy = new GrouperRegisteredServiceAccessStrategy();
        final Map<String, Set<String>> requiredAttributes = new HashMap<>();
        requiredAttributes.put("memberOf", Collections.singleton("admin"));
        strategy.setRequiredAttributes(requiredAttributes);
        strategy.doPrincipalAttributesAllowServiceAccess("banderson", (Map) RegisteredServiceTestUtils.getTestAttributes());
    } else {
        LOGGER.info("[{}] is not configured. Skipping tests", resource.getFilename());
    }
}
 
开发者ID:mrluo735,项目名称:cas-5.1.0,代码行数:14,代码来源:GrouperRegisteredServiceAccessStrategyTests.java

示例3: getClassOrSystemPath

import org.springframework.core.io.ClassPathResource; //导入方法依赖的package包/类
/**
 * 获取文件的绝对路径,class查找和系统路径查找
 */
public static String getClassOrSystemPath(String path) {
	ClassPathResource rs = new ClassPathResource(path);
	FileSystemResource fr = new FileSystemResource(path);
	if (rs.exists())
		return FileUtils.class.getClassLoader().getResource(path).getFile();

	if (fr.exists())
		return fr.getPath();

	return null;
}
 
开发者ID:yi-jun,项目名称:aaden-pay,代码行数:15,代码来源:FileUtils.java

示例4: loadImportView

import org.springframework.core.io.ClassPathResource; //导入方法依赖的package包/类
private String loadImportView() throws IOException
{
    ClassPathResource importViewResource = new ClassPathResource(configPath + packageName + ".xml");
    if (!importViewResource.exists())
    {
        throw new AlfrescoRuntimeException("Cannot find site config " + importViewResource.getPath());
    }
    return convert(importViewResource.getInputStream());
}
 
开发者ID:Alfresco,项目名称:alfresco-remote-api,代码行数:10,代码来源:SiteSurfConfig.java


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