-- WEB-INF 폴더에 'config'란 폴더 생성 후 'presentation-layerbiz.xml' 파일 생성
-- 서버 시작될 때, 해당 위치에 있는 context파일을 모조리 읽어들이는 것을 뜻합니다.
이 경로 안에 파일이 오류나면 서버 실행시 404 에러가 발생합니다.
-- 중간의 characterEncoding 은 한글 인코딩을 위해 사용합니다.
-- servlet-name. class, url-pattern 에 오타 없는지 꼭 확인 해야 합니다.
이 부분은 컨트롤러를 위해 사용 됩니다.
ex(main.do or index.jsp)contextConfigLocation/WEB-INF/spring/root-context.xmlorg.springframework.web.context.ContextLoaderListenercharacterEncodingorg.springframework.web.filter.CharacterEncodingFilterencodingUTF-8characterEncoding*.doactionorg.springframework.web.servlet.DispatcherServletcontextConfigLocation/WEB-INF/config/presentation-layerbiz.xmlaction*.do
두 번째 파일 : root-context.xml(WEB-INF -> spring 폴더)
-- DB를 연동 할 때 사용함. 중간중간 DB 및 서버 정보는 사용자에 맞게 입력해야합니다.
-- 3 번째 단락의 component-scan은 Service 와 Implement 가 저장된 패키지명으로 해야됩니다.
세 번째 파일 : presentation-layerbix.xml
-- component-scan 의 base-package 부분은 controller 를 저장한 패키지 이름으로 해야합니다.
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan r />xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
"http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd">