[오류/해결] java.io.FileNotFoundException(지정된 경로를 찾을 수 없습니다)

이신영·2023년 7월 19일
0

오류 모음집

목록 보기
16/24
post-thumbnail
post-custom-banner

게시글에서 파일업로드 로직을 구현하던 도중에 발생..

String filePath = System.getProperty("user.dir") + File.separator + "src" + File.separator + "main" + File.separator + "resources" + File.separator + "files";

이게 파일경로를 나타내는건데

이런식으로 나옴

원인

Spring에서는 일반적으로 정적 리소스는 src/main/resources/static 경로로 위치시킨다. (경로 잘못지정했다는 말)


해결

경로 static 빠졌잖아!!!!!!!!!!!!!!!!

String filePath = System.getProperty("user.dir") + File.separator + "src" + File.separator + "main" + File.separator + "resources" + File.separator + "static" +  File.separator + "files";

인간미 이슈 ㅎㅎ;

아무튼! 저런 오류가 발생한다는걸 알았으니 이득 ㅎ..

profile
후회하지 않는 사람이 되자 🔥
post-custom-banner

0개의 댓글