SSM框架基础配置



     contextConfigLocation
     classpath:verifyProject/mvc/applicationContext/ac.xml
 

 
     org.springframework.web.context.ContextLoaderListener
 

 
 
 
   
        Login
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:*-servlet.xml
        

        1
   

   
        Login
        *.action
   

 
 

*************************web-servlet.xml*****************************************************************


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

             

         

    

     
    
          
    


    
        
    

        

************************************mybatis-config.xml****************************************************************************


  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
 
      
        
      

 

***********************************applacationContext.xml****************************************************************************************


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

        
        
            
            
            
        

        
        
            
            
        

        
      
               
      

       
 


你可能感兴趣的:(SSM框架基础配置)