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

你可能感兴趣的:(maven,SSM,spring)