@Vaild 어노테이션으로 유효성 검사를 하기 위해 다음과 같은 HTML 코드를 작성했다. Incorrect data Incorrect data 그리고 해당 뷰를 렌더링 하기 위해 다음과 같은 컨트롤러를 작성했다. @GetMapping("/articles/post") public String showArticleForm(Model model) { return "contents/community/community-write"; } 하지만 렌터링이 되지 않는 에러가 발생했고, th:object 를 사용하려면 dto를 model에 담아줘야 한다는 사실을 알게됐다. @GetMapping("/articles/post") public String showArticleForm(Model model) { model.a..