https://www.baeldung.com/spring-classpath-file-access

Access a File from the Classpath using Spring | Baeldung

Learn how to easily open and read a file on the classpath using Spring's Resource API

www.baeldung.com


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
Posted by 張's blog
,