summaryrefslogtreecommitdiffstats
path: root/warehouse/src/main/resources/config/spring-servlet.xml
diff options
context:
space:
mode:
Diffstat (limited to 'warehouse/src/main/resources/config/spring-servlet.xml')
-rw-r--r--warehouse/src/main/resources/config/spring-servlet.xml59
1 files changed, 59 insertions, 0 deletions
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