50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?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: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-3.0.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-3.0.xsd
|
|
http://www.springframework.org/schema/mvc
|
|
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
|
|
|
|
<!-- Enable annotation driven controllers, validation etc... -->
|
|
<mvc:annotation-driven />
|
|
<context:annotation-config />
|
|
|
|
<context:component-scan base-package="th.co.muangthai.endrprint.controller" />
|
|
|
|
<bean id="viewResolver"
|
|
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
|
|
<property name="prefix">
|
|
<!--value>/pages/</value-->
|
|
<value>/WEB-INF/jsp/</value>
|
|
</property>
|
|
<property name="suffix">
|
|
<value>.jsp</value>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="messageSource"
|
|
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
|
|
<property name="basename" value="/WEB-INF/messages" />
|
|
</bean>
|
|
|
|
<!-- Configure the multipart resolver -->
|
|
<bean id="multipartResolver"
|
|
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
|
|
</bean>
|
|
|
|
<mvc:interceptors>
|
|
<mvc:interceptor>
|
|
|
|
<mvc:mapping path="/json/*" />
|
|
<bean class="th.co.muangthai.endrprint.controller.interceptor.Interceptor"/>
|
|
|
|
</mvc:interceptor>
|
|
</mvc:interceptors>
|
|
|
|
</beans>
|