✅ 구현 화면 ✅ 수정할 부분 요약 ➔ Question에 view 컬럼 추가하기 ➔ QuestionService에서 getQuestion 메서드 수정하기 ➔ question_list.html 조회수 텍스트 및 테이블 수정하기 ✅ [1단계 : Question에 view 컬럼 추가하기] @Column(columnDefinition = "integer default 0", nullable = false) private int view; /h2-console 에 접속해서 view 칼럼 생성됐는지 확인 필요 ✅ [2단계 : QuestionService에서 getQuestion 메서드 수정하기 ] public Question getQuestion(Integer id) { Optional question = this..