Spring框架one

Spring框架one_第1张图片
spring结构图 图片来自网络
一、IoC模式

系统中通过引入实现了IoC模式的IoC容器,即可由IoC容器来管理对象的生命周期、依赖关系等,从而使得应用程序的配置和依赖性规范与实际的应用程序代码分开。其中一个特点就是通过文本的配置文件进行应用程序组件间相互关系的配置,而不用重新修改并编译具体的代码。

IoC叫控制反转,是Inversion of Control的缩写,DI(Dependency Injection)叫依赖注入,是对IoC更简单的诠释。

控制反转是把传统上由程序代码直接操控的对象的调用权交给容器,通过容器来实现对象组件的装配和管理。

所谓的"控制反转"就是对组件对象控制权的转移,从程序代码本身转移到了外部容器,由容器来创建对象并管理对象之间的依赖关系。IoC体现了好莱坞原则 - "Don’t call me, we will call you"。

依赖注入的基本原则是应用组件不应该负责查找资源或者其他依赖的协作对象。配置对象的工作应该由容器负责,查找资源的逻辑应该从应用组件的代码中抽取出来,交给容器来完成。

DI是对IoC更准确的描述,即组件之间的依赖关系由容器在运行期决定,形象的来说,即由容器动态的将某种依赖关系注入到组件之中。
摘自《Java面试题全集下 - 骆昊》

二、Spring的配置的三种方法:

1、POJO+.xml文件;



        
    
        
        
        
        
     
    
        
        
        
        
        
    
    
    
    
        
        
    
    
    
    
        
        
    

    
    
        
        
    

调用IoC容器的方法为:

ClassPathXmlApplicationContext ctx = new 
              ClassPathXmlApplicationContext("appliationContext.xml");

spring几乎把所有的无状态对象都做成了单例
scope="prototype" -- 不想用单例就添加这个属性,scope有四个选择,如下:1) -prototype多例, 2) -session绑定会话, 3) -requrst绑定请求, 4) -singleton单例

注入依赖关系的方式有三种:
1、setter注入(推荐)
2、构造器注入
3、接口注入
必要属性建议通过构造器进行注入,非必要属性通过setter注入是更好的选择

2、注解+.xml文件(.xml文件比第一种方法的要简单得多,也可在在这里面直接配置);




    

    
    
    
        
        
    
    
    
        
    

调用IoC容器的方法为:

ClassPathXmlApplicationContext ctx = new 
              ClassPathXmlApplicationContext("appliationContext.xml");

此方法需要在Javabean上打注解:
spring注解:用注解会和spring耦合

1、@Component -- org.springframework.stereotype.Component;普通
2、@Repository -- import org.springframework.stereotype.Repository;持久层
3、@Controller -- org.springframework.stereotype.Controller;
4、@Service -- org.springframework.stereotype.Service;业务层

@Qualifier -- org.springframework.beans.factory.annotation.Qualifier;
@Autowired -- org.springframework.beans.factory.annotation.Autowired;自动装配

如果当spring上下文中存在不止一个类型的bean时,就会抛出BeanCreationException异常;如果Spring上下文中不存在bean,也会抛出BeanCreationException异常。我们可以使用@Qualifier配合@Autowired来解决这些问题

http://www.springframework.org/schema/context/spring-context.xsd">
 

这些都得加进来。

3、零配置:配置类+注解;

import java.util.Date;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

// 用代码配置IoC容器(目前比较流行的方式是用代码配置代码)
@Configuration
public class AppConfig {

    @Bean
    public Student student() {
        return new Student("小二", 18);
    }

    @Bean(name="car")
    public Vehicle vehicle() {
        return new Vehicle("Benz",200);
    }
    
    @Bean(name="digger")
    public Vehicle digger() {
        return new Vehicle("挖掘机", 200);
    }
    
    @Bean
    public Date birthday() {
        return new Date();
    }
}

调用IoC容器的方法为:

AnnotationConfigApplicationContext ctx = 
              new AnnotationConfigApplicationContext(AppConfig.class);

此方法也需要在Javabean上打注解,不够很简单!只需要在类上打上@Component

三、使用maven自动导入spring-jar包

注意:将maven的URL改为Apache的镜像文件:

H:\maven\apache-maven-3.3.9\conf\settings.xml

此方法可以将maven联网下载相关的jar包的速度提升很多,基本显示秒下。

1、导入核心依赖包


    
        org.springframework
        spring-context
        4.3.7.RELEASE
    

2、导入测试依赖包


    
        org.springframework
        spring-test
        4.3.7.RELEASE
    

你可能感兴趣的:(Spring框架one)