Spring(2)
-
iBatis 동적쿼리 + dynamic query
ibatis 동적쿼리 + dynamic query iBatis 다이나믹 쿼리를 만들어보자 isEqual, isNotEqual, isEmpty, isNotEmpty 를 예를 들겠다 ( IF 문이라고 생각하면됨.) 말그대로 동일하면, 동일하지 않으면, 빈값이면, 빈값이 아니면 응용하면 된다. ex)if("01".equal(value){} select a, b, c from table_nm where 1=1 and first_name = 'KIM' /* 값이 01이면 여기 조건도 탄다 */ and age = '20' ex)if(!"01".equal(value){} select a, b, c from table_nm where 1=1 and first_name = 'KIM' /* 값이 01이면 여기 조건은 안탄..
2014.01.14 -
Spring MVC 구조
스프링 프레임워크(Spring framwork)란 DI 나 AOP 기능뿐아니라 MVC 프레임워크도 제공함 DI나 AOP 를 쉽게 처리가능하게 한다.컨트롤러를 위용하여 클라이언트의 요청 부분을 처리한다 주요 구성요소를 살펴보자 구성요소 설 명 DispatcherServlet Client 요청을 받는다. Controller 에서 Clinet 요청을 전달함 . Controller가 return한 값을 View 에 전달하여 응답을 준비하도록 한다. HandlerMapping Clinet 요청을 Controller가 어떻케 처리할지 결정함. Controller Clinet 의 요청을 처리 후 result값을 DispatcherServlet에게 알려줌 ModelAndView Controller가 처리 후 결과값을 ..
2013.10.04