
Spring
OnlyQi
我是一只蜗牛
展开
-
超简单Spring入门 (二) Aspect-oriented Programming
除了Dependency Injection, Spring还能做什么呢?回答是aspect-oriented programming。当我们在写程序的时候,除了实现core logic之外,还有很多附加的功能。例如logging,transaction management and security。经常发生的情况是程序中的多个component都需要类似服务,而我们不得不在每个co原创 2011-07-28 16:00:37 · 1455 阅读 · 0 评论 -
超简单Spring入门 (三) Template
首先需要明白的还是同样的问题:template要解决的是什么用过JDBC的同志们都会发现,实际上直接对数据库进行操作的语句很少,大部分都是一些公式化的语句。比如:建立数据库连接,异常处理。使用完后关闭连接和result set,同样需要异常处理等等。这些公式化的语句被称为boilerplate code。Spring seeks to eliminate boilerplate c翻译 2011-08-05 17:20:54 · 1028 阅读 · 0 评论 -
Spring进阶(一)
了解了Spring的大致功能后,需要进一步了解细节。今天我们来看看对于一个bean,我们可以用Spring做哪些事情。1.Container首先我们需要了解一下container的概念。The container is at the core of the Spring Framework. Spring’s container usesdependency injection原创 2011-08-10 17:55:43 · 1271 阅读 · 0 评论 -
超简单Spring入门(一)Dependency Injection
首先是article的link: http://www.vogella.de/articles/SpringDependencyInjection/article.html什么是Spring?和JMS,JDBC这类实现某些特殊功能的组件不同,Spring出现的目的是让代码变的更灵活,更简单。Spring的核心思想是IOC(inversion of control)。翻译 2011-04-26 17:32:00 · 2258 阅读 · 0 评论 -
Enterprise Integration Pattern and Spring integration
Enterprise Integration Pattern 官网http://www.eaipatterns.com/From the most general perspective, only three base patterns make up enterprise integration patterns: Message, Message Channel, and Mes原创 2012-11-08 13:07:38 · 1445 阅读 · 0 评论 -
Spring Web Service
http://static.springsource.org/spring-ws/sites/2.0/reference/html/why-contract-first.htmlRemote Procedure Calls (RPC) is an integration style that tries to hide the fact that differentservices原创 2012-11-12 18:00:25 · 707 阅读 · 0 评论