Spring Framework Artifacts
| GroupId | ArtifactId | Description |
|---|---|---|
|
org.springframework |
spring-aop |
Proxy-based AOP support |
|
org.springframework |
spring-aspects |
AspectJ based aspects |
|
org.springframework |
spring-beans |
Beans support, including Groovy |
|
org.springframework |
spring-context |
Application context runtime, including scheduling and remoting abstractions |
|
org.springframework |
spring-context-support |
Support classes for integrating common third-party libraries into a Spring application context |
|
org.springframework |
spring-core |
Core utilities, used by many other Spring modules |
|
org.springframework |
spring-expression |
Spring Expression Language (SpEL) |
|
org.springframework |
spring-instrument |
Instrumentation agent for JVM bootstrapping |
|
org.springframework |
spring-instrument-tomcat |
Instrumentation agent for Tomcat |
|
org.springframework |
spring-jdbc |
JDBC support package, including DataSource setup and JDBC access support |
|
org.springframework |
spring-jms |
JMS support package, including helper classes to send and receive JMS messages |
|
org.springframework |
spring-messaging |
Support for messaging architectures and protocols |
|
org.springframework |
spring-orm |
Object/Relational Mapping, including JPA and Hibernate support |
|
org.springframework |
spring-oxm |
Object/XML Mapping |
|
org.springframework |
spring-test |
Support for unit testing and integration testing Spring components |
|
org.springframework |
spring-tx |
Transaction infrastructure, including DAO support and JCA integration |
|
org.springframework |
spring-web |
Web support packages, including client and web remoting |
|
org.springframework |
spring-webmvc |
REST Web Services and model-view-controller implementation for web applications |
|
org.springframework |
spring-webmvc-portlet |
MVC implementation to be used in a Portlet environment |
|
org.springframework |
spring-websocket |
WebSocket and SockJS implementations, including STOMP support |
Spring Framework Artifacts的更多相关文章
- Spring Framework基础学习
Spring Framework基础学习 Core support for dependency injection,transaction management,web applications,d ...
- Spring Framework Ecosystem – Introduction to Spring Projects
来自于:http://springtutorials.com/spring-ecosystem/ Hello and Welcome to Spring Tutorials Blog! Is it f ...
- 浅谈对Spring Framework的认识
Spring Framework,作为一个应用框架,官方的介绍如下: The Spring Framework provides a comprehensive programming and con ...
- Hello Spring Framework——依赖注入(DI)与控制翻转(IoC)
又到年关了,还有几天就是春节.趁最后还有些时间,复习一下Spring的官方文档. 写在前面的话: Spring是我首次开始尝试通过官方文档来学习的框架(以前学习Struts和Hibernate都大多是 ...
- 手动创建Spring项目 Spring framework
之前学习框架一直是看的视频教程,并且在都配套有项目源码,跟着视频敲代码总是很简单,现在想深入了解,自己从官网下载文件手动搭建,就遇到了很多问题记载如下. 首先熟悉一下spring的官方网站:http: ...
- 转-Spring Framework中的AOP之around通知
Spring Framework中的AOP之around通知 http://blog.csdn.net/xiaoliang_xie/article/details/7049183 标签: spring ...
- spring 官方下载地址(Spring Framework 3.2.x&Spring Framework 4.0.x)
spring官方网站改版后,建议都是通过 Maven和Gradle下载,对不使用Maven和Gradle开发项目的,下载就非常麻烦,下给出Spring Framework jar官方直接下载路径: h ...
- Spring Framework------>version4.3.5.RELAESE----->Reference Documentation学习心得----->Spring Framework中的spring web MVC模块
spring framework中的spring web MVC模块 1.概述 spring web mvc是spring框架中的一个模块 spring web mvc实现了web的MVC架构模式,可 ...
- Spring Framework------>version4.3.5.RELAESE----->Reference Documentation学习心得----->Spring Framework中web相关的知识(概述)
Spring Framework中web相关的知识 1.概述: 参考资料:官网documentation中第22小节内容 关于spring web mvc: spring framework中拥有自 ...
随机推荐
- eclipse调整字体大小
window->preferences->general->appearance->colors and fonts-> 双击Text Font 就调整字体大小了
- OpenVPN GUI出现CreateProcess错误的解决方法
问题描述 启动 OpenVPN GUI 时失败,提示“CreateProcess Failed, exe=’X:\XXXXX\OpenVPN\bin\openvpn.exe’ cmdline= ...
- [CLR via C#读后整理]-1.CLR的执行模型
公共语言运行时(Common Language Runtime,CLR)是一个可由多种编程语言使用的"运行时".他主要提供的功能有:程序集加载,内存管理,,安全性,异常处理,线程同 ...
- 你可能不熟悉的JS总结
暂时性死区 只要块级作用域存在let命令,它所声明的变量就"绑定"这个区域,不再受外部的影响.这么说可能有些抽象,举个例子: var temp = 123; if(true) { ...
- 20145331 实验一 "Java开发环境的熟悉"
20145331 实验一 "Java开发环境的熟悉" 实验内容 使用JDK和IDE编译.运行简单的Java程序.题目: 实现四则运算,并进行测试. 编写代码 1.首先第一步就是要输 ...
- uboot源码中"include/configs/$(boardname).h"与"configs/$(boardname)_defconfig"之间有何异同
答:最大的不同就是"configs/boardname_defconfig"中的选项都可以在make menuconfig中进行配置,而"include/configs/ ...
- AccessTokens
https://www.oauth.com/oauth2-servers/access-tokens/ Access tokens are the thing that applications us ...
- 初识numpy的多维数组对象ndarray
PS:内容来源于<利用Python进行数据分析> 一.创建ndarray 1.array :将一个序列(嵌套序列)转换为一个数组(多维数组) In[2]: import numpy as ...
- 【边框回归】边框回归(Bounding Box Regression)详解(转)
转自:打开链接 Bounding-Box regression 最近一直看检测有关的Paper, 从rcnn, fast rcnn, faster rcnn, yolo, r-fcn, ssd,到今年 ...
- HttpGet/HttpPost请求方法
/// <summary> /// HttpGet请求 /// </summary> /// <param name="url">HttpGet ...