Spring框架one

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文件;

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd">
        
    <bean id="stu2" class="org.mobiletrain.springdemo.Student"
            scope="prototype">
        <property name="name" value="李小二" />
        <property name="age" value="18" />
        <property name="vehicle" ref="train" />
    </bean>    
     
    <bean id="stu" class="org.mobiletrain.springdemo.Student">
        <!-- 构造器注入 -->
        <constructor-arg index="0" value="小二" />
        <constructor-arg index="1" value="18" />
        <!-- 通过属性引用对象(设值注入-setter注入) -->
        <property name="vehicle" ref="train" />
    </bean>
    
    <!-- spring调用已定义的有参构造器直接创建对象和属性的顺序传参 -->
    <bean id="train" class="org.mobiletrain.springdemo.Vehicle">
        <constructor-arg index="0" value="和谐号" />
        <constructor-arg index="1" value="350" />
    </bean>
    
    <!-- spring调用已定义的有参构造器直接创建对象和属性的类型 -->
    <bean id="car" class="org.mobiletrain.springdemo.Vehicle">
        <constructor-arg type="java.lang.String" value="BYD F1" />
        <constructor-arg type="int" value="80" />
    </bean>

    <!-- spring调用无参构造器通过反射用属性创建对象 -->
    <bean id="digger" class="org.mobiletrain.springdemo.Vehicle">
        <property name="info" value="挖掘机" />
        <property name="maxSpeed" value="20" />
    </bean>
</beans>

调用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文件比第一种方法的要简单得多,也可在在这里面直接配置);

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd">

    <context:component-scan base-package="org.mobiletrain.springdemo"/>
<!-- 自动配置打注解 -->
    <bean class="java.util.Date" />
    
    <bean id="digger" class="org.mobiletrain.springdemo.Vehicle">
        <property name="info" value="挖掘机" />
        <property name="maxSpeed" value="20" />
    </bean>
    
    <bean id="a" class="java.lang.String">
        <constructor-arg index="0" value="李小二" />
    </bean>
</beans>

调用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">
 <context:component-scan base-package="org.example"/>

这些都得加进来。

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、导入核心依赖包

<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>

2、导入测试依赖包

<!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-test</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,874评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,151评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,270评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,137评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,116评论 5 370
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,935评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,261评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,895评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,342评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,854评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,978评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,609评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,181评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,182评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,402评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,376评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,677评论 2 344

推荐阅读更多精彩内容