三种注入方式

第一种: 基于构造函数

hi.java (bean)

package test_one;

public class hi {
private String name;
public hi(String name) {
this.name=name;
}
public void sayhi() {
System.out.println("你好呀 "+this.name);
} }
<bean id="binbin" class="test_one.hi" scope="singleton">
<constructor-arg name="name" value="斌斌"/>
</bean>

上面是通过配置文件注入字符串

我们来看看如何注入bean

<bean id="binbin" class="test_one.hi" scope="singleton">
<constructor-arg ref="No"/>
</bean>
<bean id="No" class="test_one.no"></bean>
<!--通过构造函数,将id="No"的bean 注入到 hi 中

总结:

constructor-arg 元素表示通过构造函数注入
属性: index: 对应构造函数参数列表的位置
    type:对应构造函数列表里的的数据类型
    name:对应在构造函数列表里的变量名
    value: 赋值
    ref:对应bean类型的id名
一般都是通过name="" value="" 去注入
而注入bean只要 ref="id名"

其他用法:
<constructor-arg type="java.lang.String" value="45"/>
<constructor-arg index="0" value="20"/>

值得注意的是通过参数名称来匹配的方法,代码必须启用了调试标记编译,这样spring才可以从构造函数中查找参数名称
开发者也可以使用@ConstructorProperties注解来显式声明构造函数的名称
public class ExampleBean{
  /***省略字段**/
  @ConstructorProperties({"years","ultimateAnswer"})
  public ExampleBean(int years,String ultimateAnswer){
    this.years=years;
    this.ultimateAnswer=ultimateAnswer;
  }
}

注意: spring的便利之处就是,将value属性的字符串类型自动转换为指定类型

第二种: 基于set方法

hi.java (bean)

package test_one;

public class hi {
private String name;
private int age;
private no a;
public void setName(String name) {
this.name = name;
}
public void setAge(int age) {
this.age = age;
}
public void setA(no a) {
this.a = a;
} public void print() {
System.out.print(name+" "+age+" "+a);
}
}
<bean id="binbin" class="test_one.hi" scope="singleton">
<property name="name" value="斌斌"/>
<property name="age" value="17"/>
<property name="a" ref="No"/>
</bean>
<bean id="No" class="test_one.no"></bean>

总结:

property 表示基于set方法注入
属性: name: 对应变量名匹配
    ref: 如果注入的是bean,对应bean的id名
    value: 赋值,spring会自动将字符串类型转换为对应类型
注意:如果注入的是bean,那么对于property来说就要加上name
<property name="a" ref="No"/>

第三种: 使用p命名空间注入

本质还是基于set注入,不过xml的配置更加简单,主要一个命名空间就可以对所有的bean赋值,不用多余的嵌套property

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
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">
<!--使用无参构造函数实例化,使用p命令空间注入-->
<bean id="binbin" class="test_one.hi" scope="singleton" p:name="斌斌" p:age="17" p:a-ref="No"></bean>
<bean id="No" class="test_one.no" p:name="明明"></bean>

 第四种:使用c命名空间注入

与p命名空间注入一样,不过是基于构造函数注入

xmlns:c="http://www.springframework.org/schema/c"
<bean id="C" class="test_one.c_name" c:name="i'm c"/>

如果注入的是数组,List , Set , map, Properties

hi.java (bean)

package test_one;

import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set; public class hi {
private String[] myStrs;
private List<String> myList;
private Set<Integer> mySet;
private Map<String,String> myMap;
private Properties myProps; public void setMyStrs(String[] myStrs) {
this.myStrs = myStrs;
}
public void setMyList(List<String> myList) {
this.myList = myList;
}
public void setMySet(Set<Integer> mySet) {
this.mySet = mySet;
}
public void setMyMap(Map<String, String> myMap) {
this.myMap = myMap;
}
public void setMyProps(Properties myProps) {
this.myProps = myProps;
} public String[] getMyStrs() {
return myStrs;
}
public List<String> getMyList() {
return myList;
}
public Set<Integer> getMySet() {
return mySet;
}
public Map<String, String> getMyMap() {
return myMap;
}
public Properties getMyProps() {
return myProps;
} public void print() {
System.out.println("array:"+myStrs[0]+" "+myStrs[1]+"\nList:"+myList+"\nSet:"+mySet+"\nMap:"+myMap+"\nProperties:"+myProps);
} }
<!--使用无参构造函数实例化-->
<bean id="binbin" class="test_one.hi" scope="singleton">
<!--给数组注入数据-->
<property name="myStrs">
<array>
<value>array_one</value>
<value>array_two</value>
</array>
</property>
<!--给List注入数据-->
<property name="myList">
<array>
<value>List_one</value>
<value>List_two</value>
</array>
</property>
<!--给set集合注入数据-->
<property name="mySet">
<list>
<value>1314</value>
<value>520</value>
</list>
</property>
<!--注入map数据-->
<property name="myMap">
<props>
<prop key="testA">map_one</prop>
<prop key="testB">map_two</prop>
</props>
</property>
<!--注入Properties数据-->
<property name="myProps">
<map>
<entry key="testA" value="properties_one"/>
<entry key="testB">
<value>properties_two</value>
</entry>
</map>
</property>
</bean>

可以发现我将array, list,set 的元素混用了,将map和props混用了

也就是说 array,list ,set之间可以混用,map与props之间可以混用。 不过在实际开发时还是元素和数据类型对应使用

如果集合的数据类型是其他类型,在配置文件中,会自动将value的值转化为对应类型

注入Properties数据的另一种方式,更加简便

key=value 的写法

<!--注入Properties数据-->
<property name="myProps">
<value>
testA=Properties_one
testB=Properties_two
</value>
</property>

 引用bean注入

参考:https://www.cnblogs.com/CloudComputing-binbin/p/15939822.html

内部bean注入

内部bean也称为内部匿名bean, 如果需要注入bean并且只用于一个特定的属性,建议使用内部bean

内部bean无法被外部bean引用,哪怕你加上id,她会无视scope标签

<bean id="binbin" class="test_one.hi" scope="singleton">
<!--给数组注入数据-->
<property name="myStrs">
<array>
<bean class="test_one.no" parent="parent"/>
</array>
</property>
</bean>

那个内部bean是通过抽象bean注入的,想了解抽象bean请参考:三种实例化bean以及非实例化抽象bean

 Null以及空字符的值

<bean class="ExampleBean">
<property name="email" value=""/>
</bean>

什么示例与下列java代码效果一样

ExampleBean.setEmail("");

<null/>元素表示null(空指针)

<bean class="ExampleBean">
<property name="email">
<null/>
</property>
</bean>

与下面的java代码效果一样

ExampleBean.setEmail(null);

spring的依赖注入的四种方式,数组与集合注入;引用注入;内部bean注入的更多相关文章

  1. Android 查看项目依赖树的四种方式

    Android 查看项目依赖树的四种方式: 方式一: ./gradlew 模块名:dependencies //查看单独模块的依赖 ./gradlew :app:dependencies --conf ...

  2. Spring中依赖注入的四种方式

    在Spring容器中为一个bean配置依赖注入有三种方式: · 使用属性的setter方法注入  这是最常用的方式: · 使用构造器注入: · 使用Filed注入(用于注解方式). 使用属性的sett ...

  3. Spring通过构造方法注入的四种方式

    通过构造方法注入,就相当于给构造方法的参数传值 set注入的缺点是无法清晰表达哪些属性是必须的,哪些是可选 的,构造注入的优势是通过构造强制依赖关系,不可能实例化不 完全的或无法使用的bean. Me ...

  4. spring注入的四种方式

    配置文件spring.xml: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns=&qu ...

  5. 【websocket】spring boot 集成 websocket 的四种方式

    集成 websocket 的四种方案 1. 原生注解 pom.xml <dependency> <groupId>org.springframework.boot</gr ...

  6. Spring依赖注入的四种方式

    首先,我们需要定义一个Bean的class类: package framework.spring; import org.springframework.beans.BeansException; i ...

  7. 六 Spring属性注入的四种方式:set方法、构造方法、P名称空间、SPEL表达式

    Spring的属性注入: 构造方法的属性注入 set方法的属性注入

  8. Spring中配置数据源的四种方式

    1.spring自带的数据源 <bean id="dataSource" class="org.springframework.jdbc.datasource.Dr ...

  9. R3注入的四种方式

    DLL注入 1.首先要获取想要注入的进程句柄(OpenProcess) 2.从要注入的进程的地址空间中分配一段内存(VirtualAllocEx) 3.往分配的内存位置写入要注入的DLL名称(Writ ...

随机推荐

  1. mac下复制文件路径

    快捷键: option+command+C

  2. ssh 信任关系无密码登陆,清除公钥,批量脚本

    实验机器: 主机a:192.168.2.128 主机b:192.168.2.130 实验目标: 手动建立a到b的信任关系,实现在主机a通过 ssh 192.168.2.130不用输入密码远程登陆b主机 ...

  3. linux系统别名

    目录 一:系统别名 一:系统别名 alias 格式: alias xxx='命令' alias : 查看系统别名 alias rm='xxx' : 设置系统别名 改别名 别名 执行这个命令 [root ...

  4. react之每日一更(实现canvas拖拽,增、删、改拖拽模块大小功能)

    效果图: import React, { Component } from 'react'; import scaleImage from './images/scale.png'; import c ...

  5. AT3527 [ARC082D] Sandglass

    解法一 直接考虑在初始为 \(a\) 的情况下时刻 \(t\) 时 \(A\) 中剩余的沙子是行不通的,不妨反过来考虑在时刻 \(t\) 每个初始值 \(a\) 的答案,令其为 \(f_t(a)\). ...

  6. WebService、Http请求、Socket请求

    WebService 定义 一种web程序访问方式,常见协议:SOAP(简单对象访问协议),其实就是Http+XML.利用对象进行数据交互. 请求方法 import lombok.extern.slf ...

  7. Html CSS的三种链接方式

    感谢原文:https://blog.csdn.net/abc5382334/article/details/24260817 感谢原文:https://blog.csdn.net/jiaqingge/ ...

  8. JDK版本基础知识解释

    感谢大佬:https://www.cnblogs.com/bjguanmu/articles/8710209.html jdk:java development kit,是程序员编写java程序需要的 ...

  9. 学习JDBC遇到的一些问题

    1. 数据库版本与驱动对应问题 参考官方文档:https://dev.mysql.com/doc/connector-j/8.0/en/connector-j-versions.html 具体详情还需 ...

  10. NSMutableDictionary基本概念

    1.NSMutableDictionary 基本概念 什么是NSMutableDictionary NSMutableDictionary是NSDictionary的子类 NSDictionary是不 ...