해결된 질문
작성
·
2.7K
1
public String hello(Model model) {
model.addAttribute("date","hello!!");
return "hello";
}
return 값이 templates의 hello.html에 지정이되지않습니다.
return 값이 templates패키지안의 hello.html 지정이 되지않습니다.
윈도우에서 Ctrl + 클릭해도 강사님처럼 html 파일로 따라가지지 않습니다.
이유가 뭘까요? 다른부분있나 인강 몇번 돌려서 다시 작행했는데도 동일합니다.
http://localhost:8080/hello 들어가면 해당오류가 노출됩니다.
This application has no explicit mapping for /error, so you are seeing this as a fallback.
넵 @GetMapping 추가되어있습니다.
2022-04-20 10:56:20.276 ERROR 28996 --- [nio-8080-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "'�ȳ��ϼ���. ' + $(date)" (template: "hello" - line 8, col 4)] with root cause
에러는 이렇게 나왔습니다.
근데 조금다른데
@Controller
public class HelloController 요기에서 HelloController 이 회색입니다.