依赖注入:
- 构造器
- 通过set方式注入
- 依赖注入:set注入
- 依赖:Bean对象的创建依赖于容器
- 注入:Bean对象种的所有属性,由容器来注入
环境搭建:
- pojo类:
@Data
public class Student {
private String name;
private Address address;
private String[] book;
private List< String > hobbys;
private Map< String, String > card;
private Set< String > games;
private String girlFriend;
private Properties info;
}
public class Address {
private String address;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
}
- 注入:
<?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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="address" class="com.yf.pojo.Address"/>
<bean id="student" class="com.yf.pojo.Student">
<!--第一种,基本数据类型注入-->
<property name="name" value="小杨"/>
<!--第二种,Bean注入,ref-->
<property name="address" ref="address"/>
<!--数组注入-->
<property name="book">
<array>
<value>《红楼梦》</value>
<value>《三国演义》</value>
<value>《水浒传》</value>
<value>《西游记》</value>
</array>
</property>
<!--list-->
<property name="hobbys">
<list>
<value>打游戏</value>
<value>看电影</value>
<value>敲代码</value>
<value>睡觉</value>
</list>
</property>
<!--map-->
<property name="card">
<map>
<entry key="身份证" value="123456123456123456"/>
<entry key="银行卡" value="654321654321654321"/>
</map>
</property>
<!--set-->
<property name="games">
<set>
<value>LOL</value>
<value>PUBG</value>
</set>
</property>
<!--null-->
<property name="girlFriend"><null/></property>
<!--properties-->
<property name="info">
<props>
<prop key="学号">123456789</prop>
<prop key="电话">987654321</prop>
</props>
</property>
</bean>
</beans>
- 测试:
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
Student student = (Student) context.getBean("student");
System.out.println(student.toString());
}
- 第三方注入(拓展方式)
我们可以使用p命名空间和c命名空间进行注入。
<?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">
<!--p命名空间注入,可以直接注入属性值:property-->
<bean id="user" class="com.yf.pojo.User" p:name="小杨" p:age="18"/>
<!--c命名空间注入,通过构造器注入:property-->
<bean id="user2" class="com.yf.pojo.User" c:age="19" c:name="老杨"/>
</beans>
- bean的作用域
- 单例模式(Spring默认)
<bean id="user2" class="com.yf.pojo.User" c:age="19" c:name="老杨" scope="singleton"/>
- 原型模式:每次从容器种get的时候,都会产生一个新的对象。
<bean id="user2" class="com.yf.pojo.User" c:age="19" c:name="老杨" scope="prototype"/>
- 其余的request、session、application、这些只能在web开发种使用到。