spring-mvc.xml 925 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:context="http://www.springframework.org/schema/context"
  5. xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd">
  6. <!--配置扫描的包-->
  7. <context:component-scan base-package="com"></context:component-scan>
  8. <!-- 配置强大的视图解析器-->
  9. <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  10. <!-- 前缀-->
  11. <property name="prefix" value="/WEB-INF/views/"></property>
  12. <!-- 后缀-->
  13. <property name="suffix" value=".jsp"></property>
  14. </bean>
  15. </beans>