반응형

 

public String getRandomImage(HttpSession session) {

	filePath = "image\\rock_paper_scissor\\rock.JPG";
	URL resource = getClass().getClassLoader().getResource(filePath);
	filePath = resource.getFile();
    
	return filePath;
}

자바에서 파일 경로 불러올 때 경로는 webapp안에 있는 resources가 아닙니다.

 

 

<img src="/resources/image/captcha/rock_paper_scissor/scissor.JPG"/>

JSP 파일 경로를 불러올 때 경로는 webapp 안에 있는 resources입니다.

 

 

반응형