spring
文章平均质量分 77
RHYME_CHIANG
One Thing Remains
展开
-
Rhyme/Spring5.0.2.RELEASE官方英文文档学习笔记(1) Introduction to the Spring IoC container and beans
1.1Introduction to the Spring IoC container and beans1.1. Introduction to the Spring IoC container and beansThis chapter covers the Spring Framework implementation of the Inversion of Control (IoC) [1]原创 2017-11-30 20:02:26 · 443 阅读 · 0 评论 -
Rhyme/Spring bean的实例化 1.3.2. Instantiating beans
Spring bean的实例化 1.3.2. Instantiating beans A bean definition essentially is a recipe for creating one or more objects. The container looks at the recipe for a named bean when asked, and uses the conf原创 2017-12-06 23:32:25 · 378 阅读 · 0 评论 -
Rhyme/Spring Bean的命名 1.3.1. Naming beans
Spring Bean的命名 1.3.1. Naming beans Every bean has one or more identifiers. These identifiers must be unique within the container that hosts the bean. A bean usually has only one identifier, but if it原创 2017-12-06 22:28:03 · 269 阅读 · 0 评论 -
Rhyme/Spring 完整学习笔记
Spring 完整学习笔记spring学习笔记原创 2017-12-22 15:23:18 · 365 阅读 · 0 评论 -
Rhyme/Spring是如何简化Java开发的(POJO、DI、AOP、模板)
Spring是如何简化Java开发的Spring是为了解决企业及应用的复杂性而创建的,使用spring创建的pojo对象,也就是简单的java类,可以完成原来只有重量级的EJB对象才能完成的操作。Spring 简化java开主要体现在四个方面1、基于POJO对象的轻量级和最小化侵入式编程2、依赖注入DI与面向接口编程实现松耦合3、基于切面和惯例进行声明式编程4、基于切面和模板减少样板式代码1、基于P原创 2017-12-05 13:06:57 · 506 阅读 · 0 评论 -
Rhyme/Spring Bean概述 1.3. Bean overview
Spring Bean概述 1.3. Bean overview A Spring IoC container manages one or more beans. These beans are created with the configuration metadata that you supply to the container, for example, in the form o原创 2017-12-04 22:58:38 · 280 阅读 · 0 评论 -
Rhyme/Spring 1.2.3. Using the container 容器的使用
Spring 1.2.3. Using the container 容器的使用The ApplicationContext is the interface for an advanced factory capable of maintaining a registry of different beans and their dependencies. Using the method T ge原创 2017-12-02 10:45:56 · 298 阅读 · 0 评论 -
Rhyme/Spring 容器的实例化 1.2.2. Instantiating a container
Spring 容器的实例化 1.2.2. Instantiating a containerInstantiating a Spring IoC container is straightforward. The location path or paths supplied to an ApplicationContext constructor are actually resource str原创 2017-12-02 10:21:39 · 386 阅读 · 0 评论 -
Rhyme/Spring 1.2.1. Configuration metadata学习笔记
1.2.1. Configuration metadata学习笔记As the preceding diagram shows, the Spring IoC container consumes a form of configuration metadata; this configuration metadata represents how you as an application dev原创 2017-12-02 09:20:53 · 418 阅读 · 0 评论 -
Rhyme/Spring 1.2. Container overview
1.2. Container overviewThe interface org.springframework.context.ApplicationContextrepresents the Spring IoC container and is responsible for instantiating, configuring, and assembling the aforemention原创 2017-12-01 23:16:51 · 355 阅读 · 0 评论 -
Rhyme/Spring MVC完整学习笔记
Spring MVC学习笔记原创 2017-12-26 00:09:13 · 266 阅读 · 0 评论