2、使用有参构造函数(_springboot ioc 创建对象">
当前位置:   article > 正文

Spring中 IOC创建对象的四种方式_springboot ioc 创建对象

springboot ioc 创建对象

思考:为什么可以get到了bean?是不是Spring帮我们创建了?
上节课我们认识到,bean由Spring创建,管理和装配,体现了IOC的思想。

那IOC创建Bean有哪几种方式呢,我们去认识一下。

1、使用无参构造函数(默认方式)
    <bean id="user" class="com.blackcat.pojo.User">
        <property name="name" value="张三"/>
    </bean>
  • 1
  • 2
  • 3
2、使用有参构造函数(三种)
1、索引
    <bean id="user" class="com.blackcat.pojo.User">
        <constructor-arg index="0" value="张三"/>
    </bean>
  • 1
  • 2
  • 3
2、类型
    <bean id="user" class="com.blackcat.pojo.User">
        <constructor-arg type="java.lang.String" value="张三"/>//不推荐使用-
    </bean>
  • 1
  • 2
  • 3
3、参数名
    <bean id="user" class="com.blackcat.pojo.User">
        <constructor-arg name="name" value="张三"/>
    </bean>
  • 1
  • 2
  • 3

在配置文件加载的时候,对象就已经创建好了

下面是实体类和测试方法
package com.blackcat.pojo;

public class User {

    public User() {
        System.out.println("User类的无参构造 执行了");
    }

    public User(String name) {
        this.name = name;
    }

    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "User{" +
                "name='" + name + '\'' +
                '}';
    }

    public void show(){
        System.out.println("name = " + name);
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
package com.blackcat;

import com.blackcat.pojo.User;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        User user = (User) context.getBean("user");
        user.show();
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/241647
推荐阅读
相关标签