목록JSP/MVC_BBS (39)
WON.dev
BBS 게시글 작성 작성자 제목 비밀번호 첨부파일 내용
로그아웃 로그인 회원가입 BBS 게시판 번호 제목 작성자 날짜 조회수 게시물이 없습니다. ${vo.b_idx } ${vo.title } ${vo.writer } ${vo.reg_date } ${vo.hit } ◀ ◀ ${p } ${p } ▶ ▶
package org.joonzis.vo; import java.sql.Date; public class MVO { private int m_idx, mage; private String mid, mpw, mname, mtel; private Date joindate; public MVO() {} public MVO(int m_idx, int mage, String mid, String mpw, String mname, String mtel, Date joindate) { super(); this.m_idx = m_idx; this.mage = mage; this.mid = mid; this.mpw = mpw; this.mname = mname; this.mtel = mtel; this.joindate ..
package org.joonzis.vo; import java.sql.Date; public class CVO { private int c_idx, b_idx; private String writer, content, pw, ip; private Date reg_date; public CVO() {} public CVO(int c_idx, int b_idx, String writer, String content, String pw, String ip, Date reg_date) { super(); this.c_idx = c_idx; this.b_idx = b_idx; this.writer = writer; this.content = content; this.pw = pw; this.ip = ip; th..
package org.joonzis.vo; import java.sql.Date; public class BVO { private int b_idx, hit; private String writer, title, content, pw, ip, filename; private Date reg_date; public BVO() {} public BVO(int b_idx, int hit, String writer, String title, String content, String pw, String ip, String filename, Date reg_date) { super(); this.b_idx = b_idx; this.hit = hit; this.writer = writer; this.title = t..
package org.joonzis.service; import org.joonzis.dao.MDao; import org.joonzis.dao.MDaoImpl; import org.joonzis.vo.MVO; public class MemServiceImpl implements MemService{ MDao mdao = MDaoImpl.getInstance(); @Override public int goJoin(MVO mvo) { return mdao.goJoin(mvo); } @Override public int ckMember(MVO mvo) { return mdao.ckMember(mvo); } @Override public MVO getMember(MVO mvo) { return mdao.get..