inblog logo
|
An's Blog
    트러블 슈팅

    [트러블 슈팅] 13. 모델이름을 찾을 수 없음

    윤설안's avatar
    윤설안
    Jun 10, 2025
    [트러블 슈팅] 13. 모델이름을 찾을 수 없음
    Contents
    오류 코드이유

    오류 코드

    @GetMapping("/store/{id}") public String detail(@PathVariable("id") int id, HttpServletRequest request) { storeService.상세보기(id); request.setAttribute("model", request); return "store/detail"; }
    notion image

    이유

    ❗
    request.setAttribute("model", request); 코드를 보면 request라는 이름으로 “model”에 담으려고 하는데 request라는 변수가 없기 때문에 “model”을 찾을 수 없다고 오류가 나온다.
    // TODO : 상세보기 @GetMapping("/store/{id}") public String detail(@PathVariable("id") int id, HttpServletRequest request) { Store store = storeService.상세보기(id); request.setAttribute("model", store); return "store/detail"; }
    해당 코드에서는 storeService에서 store로 받아와 request에 store로 넣어서 “model”로 사용 할 수 있다.
    Share article

    An's Blog

    RSS·Powered by Inblog