spring IOC一个类有多个构造器,用构造器注入怎么解决匹配问题

Car 类写入两个构造器(参数不同)

package com.beans;

public class Car {
       
	   private String brand;
	   private String corp;
       private double price;
       private int maxSpeed;
       
       public Car(String brand, String corp, double price) {
   		super();
   		this.brand = brand;
   		this.corp = corp;
   		this.price = price;
   	}
       
       public Car(String brand, String corp, int maxSpeed) {
   		super();
   		this.brand = brand;
   		this.corp = corp;
   		this.maxSpeed = maxSpeed;
   	}

       @Override
   	public String toString() {
   		return "Car [brand=" + brand + ", corp=" + corp + ", price=" + price + ", maxSpeed=" + maxSpeed + "]";
   	}
}

配置文件如下




    
    
  
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    


运行主类

package com.beans;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {

	public static void main(String[] args) {
		
		
       //1.创建spring的IOC容器对象
		//ApplicationContext 代表IOC容器 是 BeanFactory 接口的子接口
		
		// ClassPathXmlApplicationContext: 是 ApplicationContext的实现类,从类路径下来加载配置文件
        ApplicationContext ctx=new ClassPathXmlApplicationContext("applicationContext.xml");
        
        //2.从IOC容器中获取bean实例
        //利用id定位到IOC容器中的bean
    
        Car car=(Car)ctx.getBean("car");
        System.out.println(car);
        
        Car car2=(Car)ctx.getBean("car2");
        System.out.println(car2);
	}

}

运行结果如图所示,都匹配到了第一个构造器。
spring IOC一个类有多个构造器,用构造器注入怎么解决匹配问题_第1张图片

那么怎么让第二个bean匹配到第二个构造器呢?
加一下属性类型就可以了,如下图

 
    
    
    
    

再次运行。it is ok.
spring IOC一个类有多个构造器,用构造器注入怎么解决匹配问题_第2张图片

你可能感兴趣的:(spring)