From 807df24de0b954707658e4df06f9a69ab5d470e7 Mon Sep 17 00:00:00 2001 From: mingyeong <127396481+kmg22@users.noreply.github.com> Date: Sun, 14 Sep 2025 13:37:47 +0900 Subject: [PATCH] =?UTF-8?q?docs=20:=20WebApplicationInitializer-convert.md?= =?UTF-8?q?=20=EC=98=A4=ED=83=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `contextConfigLoaction`의 'a'와 'c' 위치 변경 -> `contextConfigLocation` --- Docs/WebApplicationInitializer-convert.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/WebApplicationInitializer-convert.md b/Docs/WebApplicationInitializer-convert.md index efbecb7..e06e3f1 100644 --- a/Docs/WebApplicationInitializer-convert.md +++ b/Docs/WebApplicationInitializer-convert.md @@ -50,7 +50,7 @@ servletContext.addListener(listener); ```java -servletContext.setInitParameter("contextConfigLoaction", "classpath*:egovframework/spring/com/context-*.xml"); +servletContext.setInitParameter("contextConfigLocation", "classpath*:egovframework/spring/com/context-*.xml"); ``` 이때 기본 Root WebApplication의 contextClass는 [`XmlWebApplicationContext`](https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/context/support/XmlWebApplicationContext.html)이고 기본 설정 파일 위치인 `contextConfigLoaction`은 `/WEB-INF/applicationContext.xml` 이다.