ResourceUtils를 이용한 Access a File from the Classpath-classpath에 위치한 파일 절대경로 구하기
spring 2020. 7. 29. 10:54
https://www.baeldung.com/spring-classpath-file-access
File file = ResourceUtils.getFile(ResourceUtils.CLASSPATH_URL_PREFIX+"properties/sample.properties");
ClassPathResource cpr = new ClassPathResource("properties/sample.properties");
File file = cpr.getFile();
- ResourceLoader의 getInputStream 이용
https://galid1.tistory.com/m/675
- 클래스 파일 현재 위치 구하기
String path = getClass().getResource("").getPath();
File file = ResourceUtils.getFile(path + File.separator + 파일명);
'spring' 카테고리의 다른 글
deep copy Object (0) | 2022.04.04 |
---|---|
@RequestMapping value or url 가져오기 (0) | 2022.04.02 |
Server Sent Event (SSE)를 이용한 알림 구현하기 (0) | 2018.08.30 |
viewResolver 우선순위 (0) | 2018.08.08 |
엑셀 업로드 & 다운로드 (0) | 2018.07.02 |