SpringBoot get file path
通過ClassLoader獲得class path,Debug 或者 Release 不同。
加載Bean file
@ImportResource(locations = {“classpath:bean-spring.xml”})
get file
@Value(“classpath:data/input.txt”)
private Resource inputResource;
ClassPathResource resource = new ClassPathResource(“data/input.txt”, this.getClass().getClassLoader());
ResourceLoader resourceLoader = new DefaultResourceLoader();
Resource inputFile = resourceLoader.getResource(“data/input.txt”);
ClassPathResource獲得文件絕對路徑
import org.springframework.core.io.ClassPathResource;
application-dev.yml
upload:
file-path: public\avatar
@ConfigurationProperties(prefix = "upload")
public class UploadContext {
private String filePath;
ClassPathResource resource = new ClassPathResource(filePath);
absoluteFileRootPath = resource.getFile().toString();
return absoluteFileRootPath;
在Class中get file path
/**
Debug模式下
D:/abc/target/test-classes/
**/
String path1 = ClassUtils.getDefaultClassLoader().getResource("").getPath();
String path2 = ResourceUtils.getURL("classpath:").getPath();/**
D:/abc/target/classes/
**/
String path3 = 當前類.class.getProtectionDomain().getCodeSource().getLocation().getFile();/**
D:/abc/target/classes/com/book/abc/service/report/
**/
String path4 = this.getClass().getResource("").getPath();/**
Debug
D:/abc/target/test-classes/
**/
String path5 = this.getClass().getResource("/").getPath();
String path6 = JasperReportService.class.getClassLoader().getResource("").getPath();
String path7 = Thread.currentThread().getContextClassLoader().getResource("").getPath();