inflearn logo
Course

Course

Instructor

bjw5035's Posts

bjw5035 bjw5035

@bjw5035

Reviews Written
5
Average Rating
5.0

Posts 3

Q&A

안녕하세요.

안녕하세요. 지금 제가 다시 작성했는데 이번에는 됩니다... 차이점을 잘 모르겠습니다... // @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" ; }

Likes
1
Comments
4
Viewcount
301

Q&A

안녕하세요.

넵 알겠습니다. package Hello.hellospring.Controller ; import org.springframework.stereotype. Controller ; import org.springframework.web.bind.annotation. GetMapping ; import org.springframework.ui. Model ; @Controller public class HelloController { @GetMapping ( "hello" ) public String hello ( Model model ) { model . addAttribute ( "date" , "hello!!" ); return "hello" ; } }

Likes
1
Comments
4
Viewcount
301