[Spring] Front-Controller, @GetMapping, @PostMapping, 에러처리
·
Back-End/Back-End
[작성일: 2023. 04. 17] MyBatisDB를 다루는 라이브러리SQL을 다루는 방식에는 annotation 방식과 XML 방식이 있음.SQL이 복잡하거나 길어지는 경우 annotation보다 XML 을 이용하는 방식 선호     Front-Controller사용자의 request는 Front-controller인 DispatcherServlet을 통해 처리HandlerMapping은 Request의 처리를 담당하는 Controller를 찾기 위한 존재여러 객체 중 @RequestMapping Annotation이 적용된 것을 기준으로 판단적절한 컨트롤러를 찾아내면 HandlerAdaptor를 통해 해당 컨트롤러 동작Controller는 Request를 처리하는 비지니스 로직을 작성View(htm..