업로드된 이미지를 브라우저로 보기
- WEB-INF 아래의 디렉토리는 웹브라우저에서 접근 불가(WEB-INF/files/)
- 서버측에서 WEB-INF 아래의 이미지를 전해 줄 수는 있음
- <img src="/image/mypic.jpg">
- 위의 태그가 웹브라우저에 로드되면 웹브라우저는 해당 이미지를 서버에 요청하게됨
- 위의 요청을 처리하는 컨트롤러 메소드가 있다면 이 때 그 메소드가 실행됨
- 컨트롤러에서는 @ResponseBody를 사용하여 byte[]이 브라우저로 리턴되도록 함
- 이미지 데이터를 받은 <img src="xxxx">태그는 이미지를 화면에 표시할 수 있음
@Controller
@RequestMapping("/images")
public class ImageController {
@Autowired
ResourceLoader resourceLoader;
@GetMapping(value="/{filepath}", produces=MediaType.IMAGE_JPEG_VALUE)
@ResponseBody
public byte[] getImage(@PathVariable("filepath") String filepath) {
try {
Resource resource = resourceLoader.getResource("WEB-INF/files/" + filepath);
System.out.println("resource:"+resource);
InputStream is = resource.getInputStream();
int len = (int)resource.getFile().length();
byte[] buf = new byte[len];
is.read(buf);
is.close();
return buf;
} catch(Exception e) {
System.err.println("이미지 로드 실패");
//e.printStackTrace();
}
return null;
}
}