From 3b55d06b89bf64873e685c3d78fce5affbba3d17 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Tue, 16 Apr 2019 11:20:38 +0900 Subject: Add warehouse server source code. [Patch Set 2] Add ReadMe.md Change-Id: I6ade52d2490f5ca4ba107c1a27ed6d5b39048725 Signed-off-by: zheng_wenlong --- warehouse/src/main/webapp/WEB-INF/web.xml | 89 +++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 warehouse/src/main/webapp/WEB-INF/web.xml (limited to 'warehouse/src/main/webapp/WEB-INF/web.xml') diff --git a/warehouse/src/main/webapp/WEB-INF/web.xml b/warehouse/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..2f99608 --- /dev/null +++ b/warehouse/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,89 @@ + + + + springmvcRestful + + + encodingFilter + org.springframework.web.filter.CharacterEncodingFilter + + encoding + UTF-8 + + + forceEncoding + true + + + + + encodingFilter + /* + + + + filter + app.market.filter.Filter + + + filter + /* + + + + appMarket + org.springframework.web.servlet.DispatcherServlet + + contextConfigLocation + classpath:config/spring-servlet.xml + + 1 + + + + appMarket + / + + + + contextConfigLocation + classpath:config/spring-application.xml + + + + org.springframework.web.context.ContextLoaderListener + + + + org.springframework.web.util.IntrospectorCleanupListener + + + + app.market.filter.Log4jlistener + + + log4jConfigLocation + classpath:config/log4j.xml + + + + org.springframework.web.util.Log4jConfigListener + + + + /WEB-INF/pages/skip.jsp + + + + 0 + + + + 404 + /WEB-INF/pages/other/404.jsp + + + \ No newline at end of file -- cgit 1.2.3-korg