summaryrefslogtreecommitdiffstats
path: root/warehouse/src/main/resources/config
diff options
context:
space:
mode:
Diffstat (limited to 'warehouse/src/main/resources/config')
-rw-r--r--warehouse/src/main/resources/config/log4j.xml77
-rw-r--r--warehouse/src/main/resources/config/properties.properties7
-rw-r--r--warehouse/src/main/resources/config/spring-application.xml18
-rw-r--r--warehouse/src/main/resources/config/spring-servlet.xml59
4 files changed, 161 insertions, 0 deletions
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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd">
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
+ <context:property-placeholder location="classpath*:properties.properties" />
+ <!-- [STDOUT] -->
+ <appender name="console" class="org.apache.log4j.ConsoleAppender">
+ <param name="encoding" value="UTF-8" />
+ <param name="target" value="System.out" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%-5p %c{2} - %m%n" />
+ </layout>
+ </appender>
+
+ <!-- [Default Appender] -->
+ <appender name="DEFAULT-APPENDER" class="org.apache.log4j.DailyRollingFileAppender">
+ <param name="File" value="${log_web_common_default}" />
+ <param name="threshold" value="info" />
+ <param name="Append" value="true" />
+ <param name="encoding" value="UTF-8" />
+ <param name="DatePattern" value="'.'yyyy-MM-dd'.log'" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p %c{2} - %m%n" />
+ </layout>
+ </appender>
+
+ <!-- [Console Appender] -->
+ <appender name="CONSOLE-APPENDER" class="org.apache.log4j.DailyRollingFileAppender">
+ <param name="File" value="${log_web_console_default}" />
+ <param name="threshold" value="debug" />
+ <param name="Append" value="true" />
+ <param name="encoding" value="UTF-8" />
+ <param name="DatePattern" value="'.'yyyy-MM-dd'.log'" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p %c{2} - %m%n" />
+ </layout>
+ </appender>
+
+ <!-- [Error Appender] -->
+ <appender name="ERROR-APPENDER" class="org.apache.log4j.DailyRollingFileAppender">
+ <param name="File" value="${log_web_common_error}" />
+ <param name="threshold" value="error" />
+ <param name="Append" value="true" />
+ <param name="encoding" value="UTF-8" />
+ <param name="DatePattern" value="'.'yyyy-MM-dd'.log'" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p %c{2} - %m%n" />
+ </layout>
+ </appender>
+
+ <!-- [Component APPENDER] -->
+ <appender name="COMPONENT-APPENDER" class="org.apache.log4j.DailyRollingFileAppender">
+ <param name="File" value="${log_web_logistics_component}" />
+ <param name="Append" value="true" />
+ <param name="encoding" value="UTF-8" />
+ <param name="DatePattern" value="'.'yyyy-MM-dd'.log'" />
+ <layout class="org.apache.log4j.PatternLayout">
+ <param name="ConversionPattern" value="%d %-5p %c{2} - %m%n" />
+ </layout>
+ </appender>
+
+ <!-- [Component logger] -->
+ <logger name="LOGISTICS-COMPONENT">
+ <level value="debug" />
+ <appender-ref ref="console" />
+ <appender-ref ref="COMPONENT-APPENDER" />
+ <appender-ref ref="ERROR-APPENDER" />
+ </logger>
+
+ <!-- Root Logger -->
+ <root>
+ <level value="debug"></level>
+ <appender-ref ref="console" />
+ <appender-ref ref="DEFAULT-APPENDER" />
+ <appender-ref ref="CONSOLE-APPENDER" />
+ <appender-ref ref="ERROR-APPENDER" />
+ </root>
+</log4j:configuration> \ 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
+ xmlns:context="http://www.springframework.org/schema/context"
+ xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
+ xmlns:util="http://www.springframework.org/schema/util"
+ xsi:schemaLocation="http://www.springframework.org/schema/beans
+ http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
+ http://www.springframework.org/schema/context
+ http://www.springframework.org/schema/context/spring-context-3.2.xsd
+ http://www.springframework.org/schema/tx
+ http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
+ http://www.springframework.org/schema/aop
+ http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
+ http://www.springframework.org/schema/util
+ http://www.springframework.org/schema/util/spring-util-3.2.xsd">
+
+</beans> \ 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 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<beans xmlns="http://www.springframework.org/schema/beans"
+ xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:context="http://www.springframework.org/schema/context"
+ xmlns:mvc="http://www.springframework.org/schema/mvc"
+ xsi:schemaLocation="
+ http://www.springframework.org/schema/beans
+ http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
+ http://www.springframework.org/schema/context
+ http://www.springframework.org/schema/context/spring-context-4.0.xsd
+ http://www.springframework.org/schema/mvc
+ http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
+
+ <mvc:annotation-driven>
+ <mvc:message-converters register-defaults="true">
+ <bean class="org.springframework.http.converter.StringHttpMessageConverter">
+ <property name="supportedMediaTypes" value="text/plain;charset=UTF-8"/>
+ </bean>
+ <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>
+ </mvc:message-converters>
+ </mvc:annotation-driven>
+
+ <context:component-scan base-package="app.market.web.controllerDev.*" />
+ <context:component-scan base-package="app.market.web.controller.*" />
+ <context:component-scan base-package="app.market.web.services.*" />
+
+ <bean id="jacksonMessageConverter" class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
+ <property name="supportedMediaTypes">
+ <list>
+ <value>text/html;charset=UTF-8</value>
+ </list>
+ </property>
+ </bean>
+
+ <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
+
+ <mvc:resources mapping="/css/**" location="/css/" />
+ <mvc:resources mapping="/fonts/**" location="/fonts/" />
+ <mvc:resources mapping="/image/**" location="/image/" />
+ <mvc:resources mapping="/js/**" location="/js/" />
+
+ <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
+ <property name="prefix" value="/WEB-INF/pages/" />
+ <property name="suffix" value=".jsp" />
+ </bean>
+
+ <!-- file upload -->
+ <bean id="multipartResolver"
+ class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
+ <property name="defaultEncoding" value="utf-8" />
+ <property name="maxUploadSize" value="10485760000" />
+ <property name="maxInMemorySize" value="40960" />
+ </bean>
+
+ <!-- <context:component-scan base-package="app.market.core.*">
+ <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" />
+ <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Service" />
+ </context:component-scan> -->
+</beans> \ No newline at end of file