亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

springboot怎么獲取resource路徑

小億
524
2024-02-01 13:14:39
欄目: 編程語言

在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下資源的路徑。

0
崇礼县| 南和县| 桐梓县| 大埔县| 香河县| 克东县| 濉溪县| 南京市| 马尔康县| 阿克陶县| 保山市| 夹江县| 德阳市| 原平市| 郓城县| 腾冲县| 吴忠市| 江源县| 黑龙江省| 吉安市| 丽水市| 东平县| 休宁县| 宜春市| 客服| 同德县| 平塘县| 乳山市| 杭锦后旗| 库尔勒市| 宁明县| 固安县| 巫山县| 晋中市| 新安县| 宜兰县| 辉县市| 道孚县| 兴文县| 乌鲁木齐市| 石嘴山市|