목록경로 (2)
개발 무지렁이
@PathVariable 경로를 변수처럼 쓰겠다. name은 넘기지 말고, 자원만 넘겨라. (URL 요청주소 간소화) @Controller public class PathVariableController { @RequestMapping(value = {"/{type}/{id}.do"}) public void test(@PathVariable String type, @PathVariable String id) { System.out.println("PathVariableController의 test call..."); System.out.println("type: " + type); System.out.println("id: " + id); } } @RequestParam 전송된 parameter의 nam..
File 객체 새 파일에 대한 경로나 디렉터리를 캡슐화한 객체를 말한다 File file = new File(String pathname); 메서드 .getParentFile(): 부모 디렉터리를 파일형태로 리턴 .mkdirs(): 경로에 상위 디렉터리가 존재하지 않아도, 상위 디렉터리까지 생성 .delete(): 삭제 .getName(): 경로를 제외한 파일이름 .renameTo(File dest): dest로 파일 이름 변경 MultipartFile 인터페이스 업로드한 File을 핸들러에서 쉽게 다룰수 있게하는 매개변수 (스프링에서 업로드한 파일을 표현) 메서드 .getName(): 파라미터 이름 .getOriginalFilename(): 업로드한 파일 이름 .isEmpty(): 업로드한 파일이 존재..