SSM框架整合

1. 配置mybatis配置文件

创建mybatis配置文件,一般命名为mybatis-config.xml




    
    
        
        
        
        
        
        

    

2. 创建spring-dao.xml配置文件





    

    
    
        
        
        
        
        
        
    

    
    
        
        
        
    

    
    
        
        
    


3. 配置spring-service.xml配置文件




    


4. 配置spring-web.xml文件






    

    

    
    


    

    
        
        
        
        
    


    
        
    

    
        
        
        
    

    
    
        
        
    


5. 配置web.xml



    
    
        log4jConfigLocation
        classpath:log4j.properties
    
    
    
        
            org.springframework.web.util.Log4jConfigListener
        
    


    
    
        contextConfigLocation
        classpath:spring-*.xml
    
    
        org.springframework.web.context.ContextLoaderListener
    

    
    
        CharacterEncodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            utf-8
        
        
    
    
        CharacterEncodingFilter
        /*
    

    
        DispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:spring-web.xml
        
    
    
        DispatcherServlet
        /
    


你可能感兴趣的:(SSM框架整合)