使用IDEA进行struts2+Spring+mybatis+maven框架整合(三)spring框架搭建

1、pom.xml文件中导入Spring依赖的jar包:


    
    
      org.springframework
      spring-core
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-beans
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-aspects
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-context
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-jdbc
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-web
      5.0.3.RELEASE
    
    
    
      org.springframework
      spring-expression
      5.0.3.RELEASE
    
    
    
      springframework
      spring-orm
      1.2.6
    
    
    
    org.mybatis
    mybatis-spring
    1.3.1
  
2、然后在web.xml文件中配置Spring监听:


  
    org.springframework.web.context.ContextLoaderListener
  
  
  
    contextConfigLocation
    classpath:applicationContext.xml

3、在web.xml文件中配置druid数据库连接池,配置文件如下:


  
    DruidStatView
    com.alibaba.druid.support.http.StatViewServlet
  
  
    DruidStatView
    /druid/*
  
  
  
    druidWebStatFilter
    com.alibaba.druid.support.http.WebStatFilter
    
    
      exclusions
      *.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*
    
    
    
      principalSessionName
      user.username
    
    
    
      profileEnable
      true
    
  
  
  
    druidWebStatFilter
    /*
  

4、创建applicationContext.xml文件,配置信息如下:





    
    
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    

     applicationContext.xml文件先写到这里,下面介绍Mybatis框架搭建时涉及到Spring同myBatis的整合时再进行补充。

你可能感兴趣的:(使用IDEA进行struts2+Spring+mybatis+maven框架整合(三)spring框架搭建)