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

박종훈님의 프로필 이미지

작성한 질문수

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

MVC와 템플릿 엔진

Whitelabel Error Page

해결된 질문

작성

·

393

0

----------------HelloController-------------

package
hello.hellospring.contoller;

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", "hello!!");
return "hello";
}
}







---------hello.html---------------


<html xmlns:th="http://www.thymeleaf.org">
<head>
<meta http-equiv="content-type" content="text/html" charset="UTF-8" />
<title>Title</title>
</head>
<body>
<p th:text="'안녕하세요'. + ${data}"> 안녕하세요. 손님</p>
</body>
</html>













자꾸

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Jun 24 23:35:08 KST 2022
There was an unexpected error (type=Internal Server Error, status=500).
 
 
오류가 뜹니다

답변 1

0

안녕하세요. 박종훈님, 공식 서포터즈 OMG입니다.

코드상에서는 문제가 없는 것으로 보이고 500에러가 발생하네요.

hello.html의 파일 위치를 resources/templates 디렉토리 하위에 놓아주세요.

 

감사합니다.