springboot 之 获取相关路径
程序员文章站
2022-05-09 23:17:40
...
@Test
public void getPath() throws FileNotFoundException {
//获取在resources路径下的配置文件
System.out.println(ResourceUtils.CLASSPATH_URL_PREFIX+"generatorConfig.xml");
//获取项目所在绝对路径
System.out.println("++++++++");
System.out.println(System.getProperty("user.dir"));
//获取classes路径
System.out.println("-------------");
String path = ResourceUtils.getURL("classpath:").getPath();
System.out.println(path);
System.out.println("000000000000");
String conf = Thread.currentThread().getContextClassLoader().getResource("").getPath();
System.out.println(conf);
}
上一篇: PHP 模板高级篇总结
推荐阅读
-
PHP文件操作之获取目录下文件与计算相对路径的方法
-
JAVA WEB快速入门之从编写一个基于SpringBoot+Mybatis快速创建的REST API项目了解SpringBoot、SpringMVC REST API、Mybatis等相关知识
-
Python之inspect模块实现获取加载模块路径的方法
-
Django视图之URL路径参数、反向解析以及get,post获取参数
-
SpringBoot之静态资源访问与路径配置问题
-
PowerShell小技巧之查找获取注册表路径
-
HttpServletRequest获取请求路径相关方法
-
SpringBoot任务之定时任务相关知识总结
-
SpringBoot如何获取src/main/resource路径下的文件
-
PHP文件操作之获取目录下文件与计算相对路径的方法