해결된 질문
작성
·
258
·
수정됨
0
package hello.hellospring.controller;
import ch.qos.logback.core.model.Model;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controllerpublic class HelloController {
@GetMapping("hello")
public String hello(Model model) {
model.addAttribute("data", "hello!!");
return "hello";
}
위에 사진 처럼 addAttribute에 빨간 줄이 떴는데 얘는 어떻게 하나요?
Cannot resolve method 'addAttribute' in 'Model'
오류 코드입니다.
C:\Users\kimga\OneDrive\바탕 화면\hello\hello-spring\src\main\java\hello\hellospring\controller\HelloController.java:12:13
java: cannot find symbol
symbol: method addAttribute(java.lang.String,java.lang.String)
location: variable model of type ch.qos.logback.core.model.Model
네 감사합니다 해결 했습니다.