Spring项目所需的Maven依赖

转载,出处:Maven构建的Spring项目需要哪些依赖?

    
    
        org.springframework
        spring-core
        4.3.7.RELEASE
    
    
        org.springframework
        spring-beans
        4.3.7.RELEASE
    
    
        org.springframework
        spring-context
        4.3.7.RELEASE
    
    

    
        org.springframework
        spring-jdbc
        4.3.7.RELEASE
    
    
        org.springframework
        spring-tx
        4.3.7.RELEASE
    
    
    
    
        org.springframework
        spring-web
        4.3.7.RELEASE
    
    
        org.springframework
        spring-webmvc
        4.3.7.RELEASE
    
    
    
    
        org.springframework
        spring-test
        4.3.7.RELEASE
  

一共四个方面:

1)spring核心依赖
spring-core、spring-beans、spring-context

2)spring dao依赖(提供JDBCTemplate)
spring-jdbc、spring-tx

3)spring web依赖
spring-web、spring-webmvc

4)spring test依赖
spring-test

你可能感兴趣的:(spring)