
spring
dw_bao
这个作者很懒,什么都没留下…
展开
-
Spring REST Client with RestTemplate: Consume RESTful Web Service Example for XML and JSON
In this page we will learn how to use spring RestTemplate to consume RESTful Web Service. RestTemplate communicates HTTP server using RESTful principals. RestTemplate provides different methods to c转载 2016-01-29 16:42:12 · 655 阅读 · 0 评论 -
Spring 事务管理高级应用难点剖析: 第 1 部分
转载地址:http://www.ibm.com/developerworks/cn/java/j-lo-spring-ts1/index.html 概述 Spring 最成功,最吸引人的地方莫过于轻量级的声明式事务管理,仅此一点,它就宣告了重量级 EJB 容器的覆灭。Spring 声明式事务管理将开发者从繁复的事务管理代码中解脱出来,专注于业务逻辑的开发上,这是一件可以被拿来顶礼膜拜的转载 2016-02-23 10:55:59 · 226 阅读 · 0 评论 -
Spring REST Client with RestTemplate: Consume RESTful Web Service Example for XML and JSON
转载地址:http://www.concretepage.com/spring/spring-mvc/spring-rest-client-resttemplate-consume-restful-web-service-example-xml-json In this page we will learn how to use spring RestTemplate to consume RE转载 2016-02-24 11:07:49 · 564 阅读 · 0 评论 -
AOP各种的实现
1 AOP各种的实现 AOP就是面向切面编程,我们可以从几个层面来实现AOP。 在编译器修改源代码,在运行期字节码加载前修改字节码或字节码加载后动态创建代理类的字节码,以下是各种实现机制的比较。 类别 机制 原理 优点 缺点 静态AOP 静态织入 在编译期,切面直接以字节码的形式编译到目转载 2016-04-13 14:25:28 · 203 阅读 · 0 评论