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/resources/config/log4j.xml | 77 ++++++++++++++++++++++ .../main/resources/config/properties.properties | 7 ++ .../main/resources/config/spring-application.xml | 18 +++++ .../src/main/resources/config/spring-servlet.xml | 59 +++++++++++++++++ 4 files changed, 161 insertions(+) create mode 100644 warehouse/src/main/resources/config/log4j.xml create mode 100644 warehouse/src/main/resources/config/properties.properties create mode 100644 warehouse/src/main/resources/config/spring-application.xml create mode 100644 warehouse/src/main/resources/config/spring-servlet.xml (limited to 'warehouse/src/main/resources') diff --git a/warehouse/src/main/resources/config/log4j.xml b/warehouse/src/main/resources/config/log4j.xml new file mode 100644 index 0000000..e7cdd75 --- /dev/null +++ b/warehouse/src/main/resources/config/log4j.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/warehouse/src/main/resources/config/properties.properties b/warehouse/src/main/resources/config/properties.properties new file mode 100644 index 0000000..d73921d --- /dev/null +++ b/warehouse/src/main/resources/config/properties.properties @@ -0,0 +1,7 @@ +#file path +log_web_common_default=/data/appmarket/log/web/common-default.log +log_web_console_default=/data/appmarket/log/web/console-default.log +log_web_common_error=/data/appmarket/log/web/common-error.log +log_web_logistics_component=/data/appmarket/log/web/logistics-component.log + +webservice_base_uri=http://localhost:8080/webservice \ No newline at end of file diff --git a/warehouse/src/main/resources/config/spring-application.xml b/warehouse/src/main/resources/config/spring-application.xml new file mode 100644 index 0000000..9a9d89b --- /dev/null +++ b/warehouse/src/main/resources/config/spring-application.xml @@ -0,0 +1,18 @@ + + + + \ No newline at end of file diff --git a/warehouse/src/main/resources/config/spring-servlet.xml b/warehouse/src/main/resources/config/spring-servlet.xml new file mode 100644 index 0000000..f5c4966 --- /dev/null +++ b/warehouse/src/main/resources/config/spring-servlet.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + text/html;charset=UTF-8 + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file -- cgit 1.2.3-korg