인프런 커뮤니티 질문&답변

sebb님의 프로필 이미지
sebb

작성한 질문수

스프링 입문 - 코드로 배우는 스프링 부트, 웹 MVC, DB 접근 기술

hello-mvc 오류

작성

·

334

·

수정됨

0

# hello-template.html
<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<p th:text="'hello '+ ${name}">hello. empty</p>
</body>
</html>
package sebdev.prac1.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")
    public String hello(Model model){
        model.addAttribute("data","spring");
        return "hello";
    }

    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model){
        model.addAttribute("name", name);
        return "hello-template";
    }
}

 

리턴값 hello-template에 맞춰 hello-template.html으로 맞춰주었는데

이런식으로 오류가 납니다.

답변 1

0

안녕하세요. sebb님, 공식 서포터즈 y2gcoder입니다.

혹시 hello-template.html의 위치가

image

src/main/resources/templates/hello-template.html 인지 확인해주시겠습니까?

 

감사합니다.

sebb님의 프로필 이미지
sebb

작성한 질문수

질문하기