board 폴더 생성
▶ 게시판
멤버테이블생성
create table member (
id varchar(12) not null primary key,
passwd varchar(12) not null,
name varchar(12) not null,
jumin1 varchar(6) not null,
jumin2 varchar(7) not null,
tel varchar(30),
email varchar(30),
reg_date date not null
);
▷ table 생성create table board(
num number not null primary key,
writer varchar2(10) not null,
email varchar2(30),
subject varchar2(50) not null,
passwd varchar2(12) not null,
reg_date date not null,
readcount number default 0,
ref number not null,
re_step number not null,
re_level number not null,
content varchar2(4000)not null,
ip varchar2(20) not null
);
▷ 시퀀스 생성
CREATE SEQUENCE board_seq
INCREMENT BY 1
START WITH 1
MAXVALUE 999999
NOCYCLE
NOCACHE;
BoardDataBean.java 저장 빈
BoardDBBean.java 처리 빈
writeForm.jsp 글 쓰기 - list.jsp(제목글) / content.jsp(답글) 에서 이동
writePro.jsp 글 쓰기 처리
list.jsp 글 목록 보기 - 쓰기 수정 삭제 후 이동하는 기본 페이지
content.jsp 글 내용 보기 - 글수정 글삭제 답글 글목록으로 이동 가능
modifyForm.jsp 비밀번호 입력
modifyView.jsp 글 수정 정보 입력 페이지
modifyPro.jsp 글 수정 처리
deleteForm.jsp 비밀번호 입력
deletePro.jsp 글 삭제 처리
color.jsp
style.css
script.js
\image 그림파일들
백업파일
JSP.war
'개인 공부방 > JSP' 카테고리의 다른 글
게시판 최종 (0) | 2011.12.29 |
---|---|
게시판 만들기 - 백업 (0) | 2011.12.26 |
member 프로젝트 최종 (0) | 2011.12.22 |
member (0) | 2011.12.19 |
session 생성 (0) | 2011.12.19 |