使用ssm框架开发controller层所需的配置文件spring_mvc.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.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd">
        <!--扫描包-->
        <context:component-scan base-package="cn.kgc"></context:component-scan>
        <!--配置试图解析器-->
        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <!--设置前缀-->
            <property name="prefix" value="/page/"></property>
            <!--设置后缀-->
            <property name="suffix" value=".jsp"></property>
        </bean>
        <!--开启注解驱动-->
        <mvc:annotation-driven></mvc:annotation-driven>
        <!--放行所有的静态资源-->
        <mvc:default-servlet-handler></mvc:default-servlet-handler>

</beans>

  

 

posted @ 2019-09-04 09:16  躺床上看天dzl  阅读(557)  评论(0编辑  收藏  举报