Linux 拨号vps windows公众号手机端

springboot怎么获取resource路径

lewis 8年前 (2017-01-30) 阅读数 11 #程序编程
文章标签 springboot

在Spring Boot中获取resource路径有多种方式:

  1. 使用ClassPathResource类:可以通过ClassPathResource类获取classpath下的资源路径。例如,可以使用以下代码获取classpath下的config.properties文件路径:
ClassPathResource resource = new ClassPathResource("config.properties");
String path = resource.getFile().getAbsolutePath();
  1. 使用ResourceLoader接口:通过注入ResourceLoader接口,可以使用getResource方法获取资源路径。例如,可以使用以下代码获取classpath下的config.properties文件路径:
@Autowired
private ResourceLoader resourceLoader;

public void getResourcePath() {
    Resource resource = resourceLoader.getResource("classpath:config.properties");
    String path = resource.getFile().getAbsolutePath();
}
  1. 使用@Value注解:可以使用@Value注解将资源路径注入到变量中。例如,可以使用以下代码获取classpath下的config.properties文件路径:
@Value("classpath:config.properties")
private Resource resource;

public void getResourcePath() {
    String path = resource.getFile().getAbsolutePath();
}

无论使用哪种方式,都可以获取到classpath下资源的路径。

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门