sprinig1 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. 이전 1 다음