在Spring Boot中獲取resource路徑有多種方式:
ClassPathResource
類:可以通過ClassPathResource
類獲取classpath下的資源路徑。例如,可以使用以下代碼獲取classpath下的config.properties
文件路徑:ClassPathResource resource = new ClassPathResource("config.properties");
String path = resource.getFile().getAbsolutePath();
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();
}
@Value
注解:可以使用@Value
注解將資源路徑注入到變量中。例如,可以使用以下代碼獲取classpath下的config.properties
文件路徑:@Value("classpath:config.properties")
private Resource resource;
public void getResourcePath() {
String path = resource.getFile().getAbsolutePath();
}
無論使用哪種方式,都可以獲取到classpath下資源的路徑。