SSM搭建基础配置文件

web.xml配置文件


    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    
    
        encode
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            utf-8
        

    

    
        encode
        /*
    

    
    
        DispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:/springMVC.xml
        

        1
    

    
        DispatcherServlet
        /
    

    
    
        contextConfigLocation
        classpath:/spring.xml
    

    
    
        org.springframework.web.context.ContextLoaderListener
    


 

Spring配置文件


       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
                           http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
                           http://www.springframework.org/schema/context
                           http://www.springframework.org/schema/context/spring-context-4.3.xsd
                           http://www.springframework.org/schema/tx
                           http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
                           http://www.springframework.org/schema/aop
                           http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">
   
   
   
   
               
        
        
        
   

   
   
        
        
        
   

   
   
        
        
   

   
   
        
   

   
   

 

SpringMVC.xml配置文件


       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-3.2.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context-3.2.xsd
       http://www.springframework.org/schema/mvc
       http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
   
   
   
   
        
            
        

   

   
   
        
        
   

   
   
   
   

 

你可能感兴趣的:(SSM配置文件,Spring配置文件,web.xml配置文件,SpringMVC配置文件,ssm配置文件,spring配置文件,web.xml配置文件,SpringMVC配置文件)