12345678910111213141516171819202122232425262728293031323334 |
- <beans
- xmlns="http://www.springframework.org/schema/beans"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- 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.xsd">
- <context:component-scan base-package="com.yihu.platform.action" />
- <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
- <property
- name="prefix"
- value="/WEB-INF/jsp/" />
- <property
- name="suffix"
- value=".jsp" />
- </bean>
- <mvc:annotation-driven>
- <mvc:message-converters register-defaults="true">
- <bean class="org.springframework.http.converter.StringHttpMessageConverter">
- <constructor-arg value="UTF-8"/>
- </bean>
- </mvc:message-converters>
- </mvc:annotation-driven>
-
- </beans>
|