소개
소개글이 비어있어요
게시글
질문&답변
2021.04.06
안녕하세요.
안녕하세요. 지금 제가 다시 작성했는데 이번에는 됩니다... 차이점을 잘 모르겠습니다... // @GetMapping("hello")// public String hello(Model model) {// model.addAttribute("date", "hello!!");// return "hello";// } @GetMapping("hello") public String hello(Model model) { model.addAttribute("data", "hello!!"); return "hello"; }
- 1
- 4
- 214
질문&답변
2021.04.06
안녕하세요.
넵 알겠습니다. package Hello.hellospring.Controller;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.GetMapping;import org.springframework.ui.Model;@Controllerpublic class HelloController { @GetMapping("hello") public String hello(Model model) { model.addAttribute("date", "hello!!"); return "hello"; }}
- 1
- 4
- 214
질문&답변
2021.04.05
Spring Boot버전이 없습니다.
자바도 최신버전으로 하면 될까요?
- 1
- 2
- 265