# 3. SpringBoot와 SpringFramework 1. 화면단 - Framework: JSP, Boot: html - Framework Template: jstl, Boot Template: thymeleaf - Framework Controller: @Controller(return String), Boot Controller: @RestController(return ModelAndView, return ResponseEntity) ==> @ResponseBody + @Controller - Service, ServiceImpl: 완전 동일 - DB접근 객체: Framework: DAO, Boot: Mapper Interface, Repository Interface(둘 다 혼용 가능) - ..