2021년/개발공부
스프링 시작하기 #2
정적 컨텐츠: 파일을 그대로~ MVC와 템플릿 엔진: 템플릿 엔진을 MVC 방식으로 쪼개서, view를 템플릿 엔진으로 html을 좀 더 프로그래밍한거로 랜더링 해서 이 html을 client에게 전달 API: 객체 전달 @Controller public class HelloController { //기본 @GetMapping("hello") public String hello(Model model){ model.addAttribute("data","hello!"); return "hello"; } //mvc @GetMapping("hello-mvc") public String heeloMvc(@RequestParam(value = "name", required = false) String name, M..
2021. 3. 9. 17:01