SpringBoot获取资源文件路径

一、SpringBoot获取项目路径

在使用SpringBoot时,我们可能需要获取当前项目的路径,可以使用以下代码来获取:

String projectPath = System.getProperty("user.dir");
System.out.println("项目路径:" + projectPath);

上述代码通过System类的getProperty方法获取用户当前工作目录的绝对路径,即为当前项目的路径。

二、SpringBoot获取配置文件路径

在SpringBoot的应用开发中,我们经常需要读取配置文件。以下是获取配置文件路径的示例代码:

String configPath = System.getProperty("user.dir") + "/src/main/resources/application.properties";
System.out.println("配置文件路径:" + configPath);

上述代码使用System.getProperty方法获取用户当前工作目录的绝对路径,再拼接上应用配置文件的相对路径获取到了配置文件的绝对路径。

三、SpringBoot获取Jar包路径

使用SpringBoot开发应用时,我们可能需要获取当前jar包的路径,以下是示例代码:

String jarPath = this.getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
System.out.println("Jar包路径:" + jarPath);

上述代码使用Java提供的getClass和getProtectionDomain方法获取当前类的保护域,再通过getCodeSource方法获取代码源路径,即为当前Jar包的路径。

四、SpringBoot获取Resource目录路径

在SpringBoot的应用开发中,我们可能需要获取resources目录的路径。以下是获取resources目录路径的示例代码:

String resourcePath = this.getClass().getResource("/").getPath();
System.out.println("Resource目录路径:" + resourcePath);

上述代码使用Java提供的getClass和getResource方法获取项目的classpath,再使用getPath方法获取目录的绝对路径。

五、SpringBoot获取Resources路径

在SpringBoot中,我们可以使用类加载器获取resources目录下的文件。以下是获取resources目录下文件的示例代码:

Resource resource = new ClassPathResource("application.properties");
String filePath = resource.getFile().getAbsolutePath();
System.out.println("文件路径:" + filePath);

以上代码中,我们使用了classpath下文件的相对路径,并将其封装成Spring提供的Resource对象,接着调用getFile方法获取文件,并使用getAbsolutePath方法获取文件的绝对路径。

六、SpringBoot获取项目根路径

在SpringBoot应用开发过程中,我们可能需要获取项目根目录的路径。以下为获取项目根路径的示例代码:

String rootPath = getClass().getResource("/").getPath().split("target")[0];
System.out.println("项目根路径:" + rootPath);

以上代码中,我们先通过getClass和getResource方法获取classpath路径下的目录,接着使用String的split方法,以"target"作为分割符,获取项目的根路径。

七、SpringBoot获取classpath路径

在SpringBoot应用开发过程中,我们可能需要获取classpath路径。以下是获取classpath路径的示例代码:

ClassLoader classLoader = getClass().getClassLoader();
String classPath = classLoader.getResource("").getPath();
System.out.println("classpath路径:" + classPath);

以上代码中,我们使用getClass和getClassLoader方法获取类加载器对象,并使用getResource方法获取classpath的绝对路径。

综上所述,本文从不同角度为大家介绍了如何在SpringBoot应用中获取资源文件路径,包括项目路径、配置文件路径、Jar包路径、Resource目录路径、Resources路径、项目根路径和classpath路径。

posted @   盘思动  阅读(6491)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 分享4款.NET开源、免费、实用的商城系统
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2022-01-26 updateTimelineShareData ok无法分享
2021-01-26 启动redis 服务
2021-01-26 tp3.0 tp3.1 在php7环境下运行问题 preg_replace 问题解决
2018-01-26 pc扫码支付
点击右上角即可分享
微信分享提示