IOC创建对象的方式

Posted liqiliang1437

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IOC创建对象的方式相关的知识,希望对你有一定的参考价值。

IOC创建对象的方式

1.默认使用无参构造创建对象,如果没有则报错

2.假设要使用有参构造创建对象

? 1.直接通过参数来设置

<bean id="user" class="com.liqiliang.pojo.User">
        <!--默认无参构造创建对象-->
        <!-- <property name="name" value="张三"/> -->
    
        <!--有参构造创建对象, 直接通过参数来设置-->
        <constructor-arg name="name" value="王二麻"/>
</bean>

? 2.下标赋值

<bean id="user" class="com.liqiliang.pojo.User">
        <!--有参构造创建对象,下标赋值-->
        <constructor-arg index="0" value="李启亮"/>
</bean>

? 3.通过类型创建

<bean id="user" class="com.liqiliang.pojo.User">
        <!--默认无参构造创建对象-->
        <!-- <property name="name" value="张三"/> -->
    
        <!--有参构造创建对象,第二种:通过类型创建-->
        <!--不建议使用,如果有参构造两个都是String咋整?-->
        <!--<constructor-arg type="java.lang.String" value="李四"/>-->
</bean>

总结: 在配置文件加载的时候, 容器中管理的对象就已经初始化了

User

package com.liqiliang.pojo;

public class User {
    private String name;

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

    public String getName() {
        return name;
    }

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

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

MyTest

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

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

bean.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="user" class="com.liqiliang.pojo.User">
        <!--默认无参构造创建对象-->
        <!-- <property name="name" value="张三"/> -->

        <!--有参构造创建对象,第一种:下标赋值-->
        <!-- <constructor-arg index="0" value="李启亮"/> -->

        <!--有参构造创建对象,第二种:通过类型创建-->
        <!--不建议使用,如果有参构造两个都是String咋整?-->
        <!--<constructor-arg type="java.lang.String" value="李四"/>-->

        <!--有参构造创建对象,第三种:直接通过参数来设置-->
        <constructor-arg name="name" value="王二麻"/>


    </bean>
</beans>

以上是关于IOC创建对象的方式的主要内容,如果未能解决你的问题,请参考以下文章

IOC创建对象的方式

IOC创建对象的方式

IOC创建对象的几种方式

[Spring5]IOC容器_Bean管理注解方式_创建对象

Spring IOC设计原理解析

IOC创建对象方式