공통컴포넌트는 3.6 버전은 Servlet 3.1기준으로 만들어 졌지만 Servlet2.5를 호환합니다.
공통컴포넌트 3.5의 web.xml에서 첫번재 listener가 되로록 contextConfigLocation위에 EgovServletContextListener를 추가 한다.
기타 자세한 인증 및 권한 설정은 공통컴포넌트 3.5 web.xml 설정 가이드 참고
Servlet2.5 변환 예제 다운로드 : downgrade_servlet_2_5.zip
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> . . . <!-- EgovServletContextListener를 web.xml 첫번재 listener가 되로록 contextConfigLocation 상단에 추가 --> <!-- spring.profiles.active registeration Globals.DbType for globals.properties --> <listener> <listener-class>egovframework.com.cmm.context.EgovWebServletContextListener</listener-class> </listener> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:egovframework/spring/com/**/context-*.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> . . .