美文网首页
springmvc.xml

springmvc.xml

作者: 白纸糊 | 来源:发表于2019-04-01 10:34 被阅读0次
<?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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!-- 设置自动扫描的包 -->
    <context:component-scan base-package="com.atguigu.ssm" use-default-filters="false">
        <!-- 设置只扫描Handler -->
        <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>
    
    <!-- 配置视图解析器 -->
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/pages/"></property>
        <property name="suffix" value=".jsp"></property>
    </bean>
    
    <!-- 配置处理静态资源 -->
    <mvc:default-servlet-handler/>
    
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>

相关文章

网友评论

      本文标题:springmvc.xml

      本文链接:https://www.haomeiwen.com/subject/eppmbqtx.html