本文整理汇总了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());
}
}
示例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;
}
示例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());
}