【Spring】基础依赖

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



    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

你可能感兴趣的:(框架,spring)