Cooper's devlog

5-2. 질문 상세보기 기능 본문

Programming/Spring-boot

5-2. 질문 상세보기 기능

cooper_dev 2020. 7. 21. 15:47

5-2. 질문 상세보기 기능

1. 강의 링크

https://www.youtube.com/watch?v=T9DWlpWMlF4&list=PLqaSEyuwXkSppQAjwjXZgKkjWbFoUdNXC&index=41


2. 학습 목표

1. 질문 상세보기 기능 구현하기

 


3. 과정

1. show method 작성(QuestionController)

1
2
3
4
5
    @GetMapping("/{id}")
    public String show(@PathVariable Long id, Model model) {
        model.addAttribute("question", questionRepository.findById(id).get());
        return "/qna/show";
    }
 

 

2. show.html 코드 수정(for. 작성한 내용 출력될 수 있도록)

show.html 상단

 

show.html 하단

 

3. 구현 기능 확인

 


 

 

Comments