inflearn logo
Course

Course

Instructor

ruho6460102044's Posts

ruho6460102044 ruho6460102044

@ruho6460102044

Reviews Written
-
Average Rating
-

Posts 2

Q&A

똑같이 한거 같은데 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

Likes
0
Comments
3
Viewcount
978