Spring+SpringMVC +MyBatis整合配置文件案例

Spring+SpringMVC +MyBatis整合配置文件案例

针对Spring/SpringMVC/MyBatis三个框架的整合有很多的方式,经过最近的学习我来总结一下其配置文件的设置以及三大框架之间的一些关系.代码配置后面附上,仅作为建议.

三大框架之间的关系图如下:
Spring+SpringMVC +MyBatis整合配置文件案例_第1张图片

配置文件配置的对应关系:
Spring+SpringMVC +MyBatis整合配置文件案例_第2张图片

1.Spring配置文件

  • applicationContext.xml

    
    
    
    
    
        
        
        
        
    
     
    
        
    
    
    
    
        
            
            
            
            
            
        
    
    
    
        
        
    
    
    
    
        
    
        
            
    
        
        
    
    
    
    
        
    
    

2.SpringMVC配置文件

  • applicationContext-mvc.xml

    1. 
    
    
    2. 
    
        
        
    
    

3.MyBatis配置文件

  • sqlMapConfig.xml

    1. MyBatis核心配置文件
    
        
    
    
  • UserMapper.xml

    
    
        
    
    
    
     
        select * from user
    
    
    
    
    

4.web.xml配置文件

  • web.xml

    1. 
    
        filter
        org.springframework.web.filter.CharacterEncodingFilter
    
        Encoding
        UTF-8
    
    
    
    
        filter
        /*
    
    
        springmvc
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:/applicationContext*.xml
        
    
    
    
        springmvc
        *.action
    
    

不太善于言辞,希望得到大家的支持,谢谢!

写于2017/04/13

你可能感兴趣的:(java_javaSE)