inflearn logo
講義

講義

知識共有

ruho6460102044さんの投稿

ruho6460102044 ruho6460102044

@ruho6460102044

レビュー投稿数
-
平均評価
-

投稿 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

いいね数
0
コメント数
3
閲覧数
976