4.IOC创建对象的方式
配置beans.xml(基于 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>"
xmlns:p="<http://www.springframework.org/schema/p>"
xmlns:c="<http://www.springframework.org/schema/c>"
xsi:schemaLocation="<http://www.springframework.org/schema/beans>
<https://www.springframework.org/schema/beans/spring-beans.xsd>">
</beans>
1.使用无参构造创建对象,默认
//无参构造方法
public User(){
System.out.println("User的无参构造!");
}
2.假设我们使用有参方法创建对象
1.下标赋值(可以使用 该特性显式指定构造函数参数的索引)
<!--第一种,下标赋值-->
<beanid="user"class="com.itxiaofei.pojo.User">
<constructor-argindex="0"value="小飞学java"/>
</bean>
2.类型赋值(使用属性显式指定构造函数参数的类型,则容器可以使用与简单类型匹配的类型)
<!--第二种方式:通过类型进行创建,若类型重复无法使用,故不建议使用-->
<bean id="user" class="com.itxiaofei.pojo.User">
<constructor-arg type="java.lang.String" value="小飞学java"/>
</bean>
3.通过参数名赋值
<!--第三种方式:通过参数名来进行创建-->
<bean id="user"class="com.itxiaofei.pojo.User">
<constructor-arg name="name" value="小飞学java3">
</constructor-arg>
</bean>
总结:在配置文件加载的时候,容器中管理的对象就已经初始化了!
标签:无参,xmlns,方式,创建对象,构造,IOC,赋值 From: https://www.cnblogs.com/itxiaofei/p/16834642.html