? 我们要想使用Spring,首先肯定要先导入其jar包,我们只需要在maven配置文件中加入相应的依赖,就会自动下载相应的依赖项,
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.0.RELEASE</version>
</dependency>
public class Hello {
public String str;
public String getStr() {
return str;
}
public void setStr(String str) {
System.out.println("set");
this.str = str;
}
@Override
public String toString() {
return "Hello{" +
"str=‘" + str + ‘\‘‘ +
‘}‘;
}
}
配置元数据通常有两种方法:
这里介绍 是基于注解的配置
<?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">
<!--使用spring来创建对象-->
<bean id="hello" class="com.zhonghu.pojo.Hello">
<!--
value:具体的值
ref:引用Spring容器中已经创建好的对象。
-->
<property name="str" value="Spring"/>
</bean>
</beans>
其中这里的id是标识单个bean定义的字符串;class是定义Bean的类型并使用完全限定的类名。
实例化容器可以通过Spring提供的ApplicationContext构造函数。其通过一个或多个参数来从各种外部资源中加载配置元数据Classpath。
@Test
public void test(){
//解析beans.xml文件 , 生成管理相应的Bean对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//getBean : 参数即为spring配置文件中bean的id .
Hello hello = (Hello) context.getBean("hello");
// Hello hello = context.getBean("hello",Hello.class);
System.out.println(hello.toString());
}
总结
这个过程就是控制反转:
依赖注入:就是利用set方法来进行注入的
用这种方法后,我们就不需要再程序中进行修改,要实现不同的操作,只需要在xml配置文件中进行修改即可。
所谓的IOC就是:对象由Spring来创建、管理、装配
public class User {
private String name;
public User() {
System.out.println("user无参构造方法");
}
public void setName(String name) {
this.name = name;
}
public void show(){
System.out.println("name="+ name );
}
}
<?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.zhonghu.pojo.User">
<property name="name" value="zhonghu"/>
</bean>
</beans>
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//在执行getBean之前, user已经创建好了 , 通过无参构造
User user = (User) context.getBean("user");
//调用对象的方法 .
user.show();
}
? 可以发现,在调用show方法前,User对象就已经通过无参构造初始化了。容器在创建的时候就已经创建对象了。
Spring通过无参构造来创建对象,然后用set方法进行注入。
其name属性是类中的成员属性
public class UserT {
private String name;
public UserT(String name) {
this.name = name;
}
public void setName(String name) {
this.name = name;
}
public void show(){
System.out.println("name="+ name );
}
}
<?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="userT" class="com.zhonghu.pojo.UserT">
<!-- name 指参数名-->
<constructor-arg name="name"value="zhonghu"/>
</bean>
<!-- 第二种根骨index参数下标来设置-->
<bean id="userT" class="com.zhonghu.pojo.UserT">
<!-- index值构造方法,下标从0开始 -->
<constructor-arg index="0" value="zhonghu"/>
</bean>
<!-- 第三种 根据参数类型设置 十分不推荐-->
<bean id="useT"class="com.zhonghu.pojo.UserT">
<constructor-arg type="java.lang.String" value="zhonghu"/>
</bean>
</beans>
@Test
public void testT(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
UserT user = (UserT) context.getBean("userT");
user.show();
}
? 在配置文件加载的时候。其中管理的对象都已经初始化了
其name属性里面对应有参构造的形参名称
所有的Bean都是在第一次使用该Bean的时候初始化(懒加载)
alias 为bean设置别名,可以同时设置多个别名
<!--设置别名:在获取Bean的时候可以使用别名获取-->
<alias name="userT" alias="userNew"/>
<!--bean就是java对象,由Spring创建和管理-->
<!--
id 是bean的标识符,要唯一,如果没有配置id,name就是默认标识符
如果配置id,又配置了name,那么name是别名
name可以设置多个别名,可以用逗号,分号,空格隔开
如果不配置id和name,可以根据applicationContext.getBean(.class)获取对象;
class是bean的全限定名=包名+类名
-->
<bean id="hello" name="hello2 h2,h3;h4" class="com.zhonghu.pojo.Hello">
<property name="name" value="Spring"/>
</bean>
一般用于团队开发,可以将多个配置文件导入合并为一个。
<import resource="{path}/beans.xml"/>
IOC创建对象的方式
Spring Bean在什么时候初始化
本文由博客群发一文多发等运营工具平台 OpenWrite 发布
(三)Spring从入门到入土——快速上手Spring与IOC创建对象方式
原文:https://www.cnblogs.com/javazhonghu/p/14228428.html