1. The Resource Interface Spring의 Resource 인터페이스는 Resource에 대한 접근을 추상화하기 위한 인터페이스이다. public interface Resource extends InputStreamSource { //리소스가 있는지 없는지 확인 boolean exists(); //Stream이 열렸는지 체크 boolean isOpen(); //해당 리소스의 url을 가져온다 URL getURL() throws IOException; //해당 리소스의 파일을 가져온다 File getFile() throws IOException; //상대 경로를 통해서 다른 리소스를 가져옴 Resource createRelative(String relativePath) throws IOE..