본문 바로가기
Spring Framework

스프링 부트 글 업데이트 하는 방법

by 자유코딩 2018. 11. 28.

Long commentId = Long.parseLong(request.getParameter("comment_id")); // 글 id


String commentContent = request.getParameter("content"); // 글 id로 1개 찾기


Comments comments = commentsRepository.getOne(commentId); //1개 찾아서 저장


comments.setComment_content(commentContent); // 내용 변경

commentsRepository.save(comments); //아까 찾은 객체를 다시 save

 

이러면 update가 된다.

댓글