inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

박종민님의 게시글

박종민 박종민

@ruho6460102044

수강평 작성수
-
평균평점
-

게시글 2

질문&답변

똑같이 한거 같은데 404 오류가 뜨네요..

package controller ; import org.springframework.stereotype. Controller ; import org.springframework.ui.Model ; import org.springframework.web.bind.annotation. GetMapping ; import org.springframework.web.bind.annotation. RequestParam ; @Controller public class HelloController { @GetMapping ( "hello-mvc" ) public String helloMvc ( @RequestParam ( "name" ) String name , Model model) { model.addAttribute( "name" , name) ; return "hello-template" ; } } //HelloController xmlns: th ="http://www.thymeleaf.org" > th :text ="'hello ' + ${name}" > hello! empty //hello-template.html

좋아요수
0
댓글수
3
조회수
976