[스프링 입문]-1

EarlyBird·2021년 10월 25일
0

스프링 입문

목록 보기
1/5
post-thumbnail

김영한님의 스프링 입문 강의 학습 내용입니다.

스프링 웹 개발 기초

@Controller
public class HelloController {

    @GetMapping("hello")
    public String hello(Model model){
        model.addAttribute("data", "hello!");
        return "hello";
    }
}
  • localhost:8080/hello를 스프링부트 내장 톰켓 서버에 넘기면 Controller의 GetMapping URL에 매칭 -> Controller의 메서드 실행
  • return “hello”; -> viewResolver -> resources-templates-hello.html 렌더링

명령 프롬프트에서의 빌드, 실행

  • gradlew -> grdlew build -> libs에서 dir -> java –jar hellohello-0.0.1-SNAPSHOT.jar
  • 종료 -> Ctrl + c

정적 컨텐츠

  • localhost:8080/hello-static.html을 내장 톰켓 서버에 넘기면 hello-static Controller를 찾는다. -> 없기 때문에 resources의 static/hello-static.html을 반환

MVC와 템플릿 엔진

    @GetMapping("hello-mvc")
    public String helloMvc(@RequestParam("name") String name, Model model){
        model.addAttribute("name", name);
        return "hello-template";
    }

localhost:8080/hello-mvc?name=spring!!!

  • localhost:8080/hello-mvc를 내장 톰켓 서버에 넘기면 Controller에 매칭된 메서드 호출 -> model의 name에 spring!!!이 넘어간다. -> return "hello-template"; -> viewResolver가 templates/hello-template.html(thymeleaf 템플릿 엔진 사용)을 찾아 thymeleaf 템플릿 엔진에 넘긴다. -> 템플릿 엔진이 변환을 한 HTML을 웹 브라우저에 넘긴다.

API

    @GetMapping("hello-api")
    @ResponseBody 
    public Hello helloApi(@RequestParam("name") String name){
        Hello hello = new Hello();
        hello.setName(name);
        return hello;
    }

    static class Hello{
        private String name;

        public String getName() {
            return name;
        }

        public void setName(String name) {
            this.name = name;
        }
    }
  • @ResponseBody : HTTP의 Body에 내용을 직접 반환
  • localhost:8080/hello-api를 내장 톰켓 서버에 넘기면 Controller의 GetMapping URL에 매칭 -> @ResponseBody -> HttpMessageConverter(viewResolver 사용없음) -> return이 문자라면 StringConverter / return이 객체라면 JsonConverter
profile
안되면 되게 합시다

0개의 댓글

관련 채용 정보