JDBC2 3. 블로그 글 작성 기능 - 조회 기능 및 중복 Context 추출 조회 기능 이번에는 작성된 글을 인덱스를 활용해 조회해 보자. public Posting findByIdx(int idx){ Posting posting = null; try (Connection conn = DriverManager.getConnection(url, userName, password)) { PreparedStatement ps = conn.prepareStatement( "select * from posting where idx = ?"); ps.setString(1, String.valueOf(idx)); ResultSet rs = ps.executeQuery(); if (rs.next()) { posting = new Posting(); posting.setIdx(rs.getInt(.. 2023. 8. 11. 3. 블로그 글 작성 기능 - 글 생성 및 중복 Context 추출 가장 먼저, 블로그 글 CRUD 로직을 구현해 보자. 모델 생성 클래스 생성 블로그 글에는 제목과 글 내용, 작성자가 필요하다. 추가로, 블로그 포스팅을 구분하기 위한 인덱스 값까지 네개의 필드로 `Posting` 객체를 만들어 주자. @Data public class Posting { int idx; String title; int user_idx; String content; public Posting(String title, int user_idx, String content) { this.title = title; this.user_idx = user_idx; this.content = content; } } 테이블 생성 DB에도 게시글을 저장하기 위한 테이블을 생성해 둔다. create tabl.. 2023. 8. 11. 이전 1 다음