Spring 공부 (9) 썸네일형 리스트형 spring 공부 - 정적 컨텐츠, MVC, API index.html 부터 시작함 템플릿 엔진: Thymeleaf 웹어플리케이션에서 첫번째 진입점이 controller index.html Hellohello 웹 어플리케이션에서 /Hello 라고 들어오면 이 메소드 실행 @Controllerpublic class HelloController { @GetMapping("hello") public String hello(Model model){ model.addAttribute("data","hello!"); // model에 담음 // 데이타를 hello 라고 넘길 꺼다 // 키가 data 벨류는 hello return "hello"; // hello.html 을 찾아감 }} templetes/hello.html에서치환되서 .. 이전 1 2 다음