spring
文章平均质量分 52
justpassby
这个作者很懒,什么都没留下…
展开
-
spring 首要分析
Sophisticated applications often require services such as transaction support, security, and distributed computing. 复杂的应用程序网网需要事务支持、安全支持、分布式计算、 事务支持 安全 分布式:REST、JMS等 spring的核心: 1.DI:Depen...原创 2013-05-19 08:26:56 · 82 阅读 · 0 评论 -
spring wiring beans
In Spring, objects aren’t responsible for finding or creating the other objects that they need to do their jobs. Instead, they’re given references to the objects that they collaborate with by the ...原创 2013-05-19 12:57:22 · 73 阅读 · 0 评论 -
Spring Expression Language (SpEL)
Spring Expression Language (SpEL)原创 2013-05-19 12:59:54 · 111 阅读 · 0 评论 -
spring 基于注解的配置
Fortunately, Spring offers a few tricks to help cut down on the amount of XML configuration required: Spring 提供一些措施来帮助减少XML的配置量: Autowiring:自动注入beans的属性 Autodiscovery:自动发现哪些类应该注册为bean 1.Aut...2013-05-19 14:39:58 · 81 阅读 · 0 评论 -
Spring AOP
Aspect-oriented Spring cross-cutting concern:a cross-cutting concern can be described as any functionality that affects multiple points of an application:交叉问题的定义,如图所示 AOP术语: Advice:What & Wh...2013-05-19 19:31:06 · 90 阅读 · 0 评论 -
FactoryBean
在Spring BeanFactory容器中管理两种bean 1.标准Java Bean 2.另一种是工厂Bean, 即实现了FactoryBean接口的bean 它不是一个简单的Bean 而是一个生产或修饰对象生成的工厂Bean 3.在向Spring容器获得bean时 对于标准的java Bean 返回的是类自身的实例 4.而FactoryBean 其返回的对象不...原创 2013-05-22 09:22:20 · 61 阅读 · 0 评论 -
Spring database
Templating data access Spring的DAO蕴含一个设计模式:模板方法 Template Method pattern Spring separates the fixed and variable parts of the data access process into two dis- tinct classes: templates and cal...2013-05-22 09:56:14 · 120 阅读 · 0 评论 -
Spring 事务管理
事务的概念:一组操作要么全完成,要么都不完成。 可以用ACID来描述事务: Atomic:事务由一系列的活动构成,Atomic确保在一个事务中的这些活动要么全部发生、要么一个也不发生。 Consistent:事务完成之后(正常结束、非正常结束),应用程序的数据和状态处于合法的状态。 Isolated:事务允许多个用户操作相同的数据,并且不相互影响。因此事务执行需要被隔离,以防止并发...2013-05-26 10:54:23 · 118 阅读 · 0 评论