spring配置文件注入的多种方式

本文介绍了Spring配置文件注入的多种方式,包括默认构造函数、有参构造函数、set方法注入、工厂方法创建对象(普通及静态)以及集合类型的IOC初始化。此外,还提到了ApplicationContext的三个常用实现类及其特性。
摘要由CSDN通过智能技术生成

spring配置文件注入的多种方式

1.默认构造函数
package com.zho.service.impl;

import com.zho.service.IAccountService;
import java.util.*;

public class IAccountServiceImpl implements IAccountService {
   
	private String name;
    private Integer age;
    private Date birthday;
    
    public IAccountServiceImpl() {
   
    }
}
<?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="accoutnService" class="com.zho.service.impl.IAccountServiceImpl"/ >

</beans>
2.有参构造函数注入(注入的参数必须齐全,否则注入失败)
package com.zho.service.impl;

import com.zho.service.IAccountService;
import java.util.*;

public class IAccountServiceImpl implements IAccountService {
   
	private String name;
    private Integer age;
    private Date birthday;
    
     public IAccountServiceImpl(String name, Integer age, Date birthday) {
   
        this.name = name;
        this.age = age;
        this.birthday = birthday;
    }
 
}
#配置文件写法
    <bean id="accountService" class="com.zho.service.impl.IAccountServiceImpl">
        <constructor-arg name="age" value="12"/>
        <constructor-arg name="name" value="梨花"/>
        <constructor-arg name="birthday" ref="now"/>
        <!--类中所有变量都需要在这里进行初始化,(缺一不可)-->
    </bean>
    <bean 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值