2020-02-17

庚子鼠年 戊寅月 庚寅日

描述

ssm 搭建

技术总结:wu

随笔

web.xml 配置



    dispatcherServlet
    org.springframework.web.servlet.DispatcherServlet
    
        contextConfigLocation
        classpath:springmvc.xml
    
    
    1



    dispatcherServlet
    /



    characterEncodingFilter
    org.springframework.web.filter.CharacterEncodingFilter
    
        encoding
        UTF-8
    


    characterEncodingFilter
    /*

spring的配置文件可以通过拦截器读入




    org.springframework.web.context.ContextLoaderListener



    contextConfigLocation
    classpath:applicationContext.xml

MVC层

1.开启注解扫描,只扫描Cantooller


    

2.配置视图解析器


  
  

3.静态资源不过滤




4.开启注解支持


service层

事务的配置




    




    
        
        
    




    

dao层

1.数据源


    
    
    
    

    
    

    
    
    
    

    
    

    
    

    
    

    
    
    

    
    
    

2.SqlSession工厂



    
      (配置文件:可选)

3.自动扫描包


    

4.mybatis配置文件(可选)

可以通过spring的配置文件配置,也可以通过mybatis-config.xml配置

17

你可能感兴趣的:(2020-02-17)