MVC - 게시판(페이징+검색, 파일업로드) 한번에 총정리
Spring MVC - 게시판 조회, 등록, 수정, 삭제 + 검색, 페이징, 파일업로드 pom.xml & context.xml 설정 파일 업로드를 위하여 pom.xml에 업로드관련 추가 commons-io commons-io 2.0.1 commons-fileupload commons-fileupload 1.3.2 DAO에 사용될 트랜잭션 관련 context 추가 VO public class NoticeVO { private int noticeNum; private String title; private String content; private String writer; private String regDate; /*getters & setters*/ } public class NoticeFileVO {..
2018. 5. 8. 09:55