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가 된다.
'Spring Framework' 카테고리의 다른 글
스프링부트 spring boot json 리턴 하는 방법 (0) | 2018.12.11 |
---|---|
스프링 부트 타임리프 img 태그 파일 경로 인식 (0) | 2018.11.29 |
컨트롤러에서 지정한 세션 값 타임리프에서 읽기 (0) | 2018.11.28 |
스프링 부트 타임리프( thymeleaf )에 ajax 적용해본 경험담 (0) | 2018.11.27 |
PropertyReferenceException: No property xx for type yy 에러 해결 (0) | 2018.11.26 |
댓글