[User_공지사항] 게시글 목록 / 상세보기 / 조회수 / 이전 다음 페이지 이동 (2)
🟢 NoticeRepository ▪️ 조회수 증가 noticeView 메소드는 noticeId를 식별자로 사용하여 NoticeEntity 인스턴스의 noticeView 필드를 업데이트 noticeView 메소드 호출 시 noticeId 값을 전달 @Repository public interface NoticeRepository extends JpaRepository { //조회수 증가 @Modifying @Query("UPDATE NoticeEntity n SET n.noticeView = n.noticeView+1 WHERE n.noticeId = :noticeId") void noticeView (@Param("noticeId")Integer noticeId); } ▪️ 이전 다음 페이지로 이동 /..
2024.01.23