码迷,mamicode.com
首页 > 编程语言 > 详细

配置springmvc的springmvc.xml

时间:2020-07-12 20:48:22      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:can   context   dap   request   ice   开启   map   name   drive   

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <!-- 开启注解扫描 -->
    <context:component-scan base-package="cn.itcast" />

    <!-- 视图解析器对象 -->
    <bean id="internalResourceView" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/pages/" />
        <property name="suffix" value=".jsp" />
    </bean>

 <!-- 开启SpringMVC框架注解的支持,相当于
      自动加载 RequestMappingHandlerMapping (处理映射器)
      和 RequestMappingHandlerAdapter ( 处 理 适 配 器 )
      -->
    <mvc:annotation-driven conversion-service="conversionService" />

</beans>

配置springmvc的springmvc.xml

标签:can   context   dap   request   ice   开启   map   name   drive   

原文地址:https://www.cnblogs.com/jock766/p/13289656.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!