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

이우연님의 프로필 이미지

작성한 질문수

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

API

page 에러

작성

·

163

0

Whitelabel Error Page

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

Fri Aug 26 14:10:46 KST 2022

There was an unexpected error (type=Internal Server Error, status=500).

정적 index.html 은 잘 찾아가는데

hello-mvc는 찾아가질 못하네요

Controller 소스코드

package hello.hellospring.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", "hello!!");
        return "hello";
    }
    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model) {
        model.addAttribute("name", name);
        return "hello-template";
    }
}

답변 1

0

안녕하세요. 이우연님, 공식 서포터즈 David입니다.

  1. 요청시 request param은 잘 전달 되었는지

  2. hello-template에서 name을 출력하는 타임리프의 문법이 제대로 작성되는지

위 2가지 사항 확인 해주세요:)

감사합니다.