中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
达尔| 无锡市| 花莲市| 双桥区| 陇南市| 睢宁县| 穆棱市| 云龙县| 北流市| 宁城县| 顺平县| 蛟河市| 易门县| 漾濞| 长子县| 沁阳市| 万源市| 二连浩特市| 理塘县| 文水县| 尚义县| 安塞县| 富平县| 庄浪县| 班戈县| 米脂县| 镇平县| 江都市| 张家港市| 嫩江县| 信宜市| 方正县| 永登县| 嘉善县| 灵石县| 安顺市| 宜丰县| 韶关市| 寿宁县| 容城县| 安庆市|