ssm整合框架 Spring—MVC基本配置 spring-servlet.xml配置详解

以下为ssm框架整合开发中,对Spring-MVC的配置,文件名为spring-servlet.xml。最下的代码可直接粘贴到spring-servlet.xml文件中。如需其他配置文件信息,请鉴阅本人其他文章

ssm整合框架 Spring—MVC基本配置 spring-servlet.xml配置详解_第1张图片


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:p="http://www.springframework.org/schema/p"
    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-3.0.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
    http://www.springframework.org/schema/tx
    http://www.springframework.org/schema/tx/spring-tx-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-3.0.xsd">

    
    
    
    
    
    
      
   
           
           
           
           
   

   
   
   
   

你可能感兴趣的:(ssm项目配置)