728x90
320x100
[참고]
김영한님 스프링 강의를 바탕으로 진행되는 토이프로젝트의 과정을 기록하는 글입니다.
둥근 피드백은 언제나 환영입니다.
[오늘의 개발내용]
1. 타임라인 수정 구현하기 (TimelineController, editForm.html)
1. 타임라인 수정 구현하기 (TimelineController)
@PostMapping("/{timelineId}/timelineEdit")
public String edit(@PathVariable String timelineId, @ModelAttribute Timeline timeline){
timeLineRepository.update(timelineId, timeline);
return "redirect:/timeline/{timelineId}";
}
- 타임라임 수정 폼을 요청하는 주소와 똑같은 Mapping을 하는 대신 POST 임을 명시해서 수정폼 매핑과 구분을 둔다.
[구현]
728x90
320x100
'💻 뚝딱뚝딱 > 북북클럽' 카테고리의 다른 글
[개발일지#013] 타임라인 등록 폼 구현하기 (0) | 2024.01.26 |
---|---|
[개발일지#012] 회원가입시 문제점 해결하기 (Redirect) (0) | 2024.01.25 |
[개발일지#010] 타임라인 수정 폼 구현하기 (0) | 2024.01.23 |
[개발일지#009] 타임라인 상세 구현하기 (0) | 2024.01.22 |
[개발일지#008] 타임라인 목록 -> 회원 상세 구현하기 (0) | 2024.01.19 |