Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[이서현] 6주차 과제 - complete #57

Merged
merged 1 commit into from
Dec 26, 2023
Merged

[이서현] 6주차 과제 - complete #57

merged 1 commit into from
Dec 26, 2023

Conversation

seohyun-lee
Copy link
Member

@seohyun-lee seohyun-lee commented Dec 23, 2023

제출 상태

6주차 과제 complete
디렉터리 만들어 제출합니다!
p.s. 5주차 과제를 아직 과제 리뷰 작성하지 않으셨는데 Merge 해버렸습니다. 확인해주시면 감사드리겠습니다..!

help

200 OK

Copy link
Member

@JeonHaeseung JeonHaeseung left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

과제 리뷰 완료
항상 열심히 과제해주는 서현님!
이번 주도 과제가 깔끔하고 좋네요! 수고 많으셨어요😊
메리 크리스마스🎄

Comment on lines +39 to +54
//@Controller에서 view에 리턴할 때의 컨트롤러 코드
/*@GetMapping("/")
public String readDB(Model model){
model.addAttribute("bookForm", new BookForm()); //BookForm 객체 넘기기
model.addAttribute("books", rdsService.findBooks());
return "index";
}
@PostMapping("/upload")
public String updateDB(BookForm form){
Book book = new Book();
book.setName(form.getName());
book.setReason(form.getReason());
rdsService.saveBook(book);
return "redirect:/";
}
*/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

강의의 과정을 하나하나 따라해주신 게 보여서 감동적이에요...!🥹

@seohyun-lee seohyun-lee merged commit 23bc2ce into main Dec 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants