Spring依赖解析【L】

来源:互联网 发布:数据修炼系统txt 编辑:程序博客网 时间:2024/06/05 05:18
<!-- test start--><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.6</version><scope>test</scope></dependency>    <!-- test end-->    <!-- spring start --> <dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>${project.spring.version}</version></dependency><!--  +- org.springframework:spring-context:jar:3.1.4.RELEASE:compile  在基础IOC功能上提供扩展服务 |  +- org.springframework:spring-aop:jar:3.1.4.RELEASE:compile   Spring的面向切面编程 |  |  \- aopalliance:aopalliance:jar:1.0:compile                 AOP |  +- org.springframework:spring-beans:jar:3.1.4.RELEASE:compile Spring IOC的基础实现 |  +- org.springframework:spring-core:jar:3.1.4.RELEASE:compile  Spring的核心工具包 |  |  \- commons-logging:commons-logging:jar:1.1.1:compile       LOG |  +- org.springframework:spring-expression:jar:3.1.4.RELEASE:compile  Spring表达式语言 |  \- org.springframework:spring-asm:jar:3.1.4.RELEASE:compile    第三方 --><dependency><groupId>org.springframework</groupId><artifactId>spring-context-support</artifactId><version>${project.spring.version}</version></dependency><!--  \- org.springframework:spring-context-support:jar:3.1.4.RELEASE:compile Spring context的扩展支持--><!-- data start --><dependency><groupId>org.springframework</groupId><artifactId>spring-jdbc</artifactId><version>${project.spring.version}</version></dependency><dependency><groupId>org.springframework</groupId><artifactId>spring-orm</artifactId><version>${project.spring.version}</version></dependency><!-- +- org.springframework:spring-jdbc:jar:3.1.4.RELEASE:compile  数据源、事务、自带JDBC|  \- org.springframework:spring-tx:jar:3.1.4.RELEASE:compile 等提供的一致的声明式和编程式事务管理\- org.springframework:spring-orm:jar:3.1.4.RELEASE:compile  第三方提供(ibatis\hibernate等) --><!-- data end --><!-- spring end --><!-- Oracle start --><dependency><groupId>com.oracle</groupId><artifactId>ojdbc5</artifactId><version>11.2.0.3</version></dependency><!-- Oracle end -->  </dependencies>
原创粉丝点击