[JSP 게시판 만들기] - 글쓰기 기능 + DB 구현하기
○ 글쓰기 기능 + DB 구현하기 |
// ContentDBProcess.java (UserDBProcess.java와 비슷하게 하면 된다) package content; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; public class ContentDBProcess { private Connection conn; // DB 접근을 위한 private ResultSet rs; // 정보를 담기 위한
public ContentDBProcess() { // 실제로 MySQL 접속하기 위한 부분 try{ String dbURL = "jdbc:mysql://localhost:3306/test"; // 디비명 String dbID = "root"; String dbPass = "wlgns930";
Class.forName("com.mysql.jdbc.Driver"); // mysql 접속하기 위한 라이브러리 conn = DriverManager.getConnection(dbURL, dbID, dbPass); }catch(Exception e) { e.printStackTrace(); // 오류 출력 위한 } }
public String getDate() { // 시간을 가져와 저장하기 위한 String SQL = "SELECT NOW()"; // 현재 시간을 가져오는 MYSQL 구문 try { PreparedStatement pstmt = conn.prepareStatement(SQL); rs = pstmt.executeQuery(); if(rs.next()) { return rs.getString(1); } } catch(Exception e) { e.printStackTrace(); } return ""; // 데이터베이스 오류 }
public int getNext() { // 글번호를 매기기 위한 String SQL = "SELECT contentNum FROM content ORDER BY contentNum DESC"; try { PreparedStatement pstmt = conn.prepareStatement(SQL); rs = pstmt.executeQuery(); if(rs.next()) { return rs.getInt(1) + 1; } return 1; } catch(Exception e) { e.printStackTrace(); } return -1; // 데이터베이스 오류 }
// 실제 글작성 데이터를 db에 올리기 위한 public int write(String contentTitle, String userName, String contentDetail) { String SQL = "INSERT INTO content VALUES(?, ?, ?, ?, ?)"; try { PreparedStatement pstmt = conn.prepareStatement(SQL); pstmt.setInt(1, getNext()); pstmt.setString(2, contentTitle); pstmt.setString(3, userName); pstmt.setString(4, getDate()); pstmt.setString(5, contentDetail); pstmt.executeUpdate(); if(rs.next()) { return rs.getInt(1) + 1; } return 1; } catch(Exception e) { e.printStackTrace(); } return -1; // 데이터베이스 오류 } } // contentWriteProcess.jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!-- 만들어 놓은 클래스를 사용하기 위한 --> <%@ page import="content.ContentDBProcess" %> <!-- 스크립트문 편하게 사용하기 위한 --> <%@ page import="java.io.PrintWriter" %> <!-- 건너오는 데이터를 UTF-8 형태로 받아오기 위한 --> <% request.setCharacterEncoding("UTF-8"); %> <!-- 자바빈즈 사용하기 위해, 범위는 현재 페이지에서만 사용하기 위해 --> <jsp:useBean id="content" class="content.Content" scope="page"/> <!-- 로그인 페이지 넘긴 userEmail와 userPassword 사용하기 위한 --> <jsp:setProperty name="content" property="contentTitle" /> <jsp:setProperty name="content" property="contentDetail"/> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>게시물 처리 페이지</title> </head> <body> <% // 세션을 통해 글쓴 이메일 찾아옴 String userEmail = null; if (session.getAttribute("userEmail") != null){ userEmail = (String) session.getAttribute("userEmail"); }
// 하나라도 null 값이 있으면 처리하는 부분 if(content.getContentTitle() == null || content.getContentDetail() == null ){ PrintWriter script = response.getWriter(); script.println("<script>alert('입력이 안된 부분이 있습니다')</script>"); script.println("<script>history.back()</script>"); } else { ContentDBProcess contentProc = new ContentDBProcess(); int result = contentProc.write(content.getContentTitle(), userEmail, content.getContentDetail()); if( result == -1 ){ // 글쓰기 실패시 PrintWriter script = response.getWriter(); script.println("<script>alert('글쓰기에 실패하였습니다')</script>"); script.println("<script>history.back()</script>"); } else { // 글쓰기 성공시 PrintWriter script = response.getWriter(); script.println("<script>location.href = 'content.jsp'</script>"); } } %> </body> </html> |
'JSP 게시판 만들기' 카테고리의 다른 글
[JSP 게시판 만들기] - 특정 게시물을 클릭하여 자세히 보기 (0) | 2018.03.11 |
---|---|
[JSP 게시판 만들기] - 게시판에 게시물DB 출력하기 (0) | 2018.03.11 |
[JSP 게시판 만들기] - 글쓰기 게시판 만들기 (0) | 2018.03.11 |
[JSP 게시판 만들기] - 게시판 데이터베이스 생성하기 (0) | 2018.03.11 |
[JSP 게시판 만들기] - Bootstrap 이용한 게시판 만들기 (0) | 2018.03.11 |