Java 之 Spring 基础与 IOC,java 实用教程第五版答案第四章
@Override
public String toString() {
return "Hello{" +
"str='" + str + ''' +
'}';
}
}
Beans.xml
一个 bean 标签代表一个对象, id 代表在 Spring 中这个类要实例化生成的对象的名字, class 指定这个实体类
设置对象的属性值
引用 Spring 容器中创建的对象
<?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="hello" class="com.zh1z3ven.pojo.Hello">
<property name="str" value="Spring"/>
</bean>
</beans>
Test.java
在 Spring 中也存在一个上下文,通过 ApplicationContext context = new ClassPathXmlApplicationContext(“beans.xml”); 传入 xml 配置文件名字来获取该 xml 文件的上下文对象。利用 ApplicationContext#getBean() 传入在 xml 中配置的该类的 id 获取该实体类对象。
public class MyTest {
public static void main(String[] args) {
//获取 Spring 上下文对象
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
//从 Spring 中取出对象
Hello hello = (Hello) context.getBean("hello");
System.out.println(hello);
}
}
PS:在配置文件加载的时候,通过 bean 标签注册的对象就已经在 Spring IoC 容器中初始化了。
总体来说就两种方式:
无参构造
默认使用
有参构造
下标赋值
<bean id="hello2" class="com.zh1z3ven.pojo.Hello">
<constructor-arg index="0" value="Spring2"/>
</bean>
类型复制
<bean id="hello3" class="com.zh1z3ven.pojo.Hello">
<constructor-arg type="java.lang.String" value="Spring3"/>
</bean>
属性名赋值
<bean id="hello4" class="com.zh1z3ven.pojo.Hello">
<constructor-arg name="str" value="Spring4"/>
</bean>
import 标签可导入其他 beans.xml 配置文件,而 applicationContext.xml 到时可作为总 bean 的配置文件,而不需要导入多个 xml
依赖注入(Dependency Injection,DI)
PS:一定需要 pojo 中实现 set 才可以利用 bean 标签注入
1.构造器注入
也就是上面提到的创建对象的方式,分为无参构造和有参构造
无参构造
默认使用
有参构造
下标赋值
<bean id="hello2" class="com.zh1z3ven.pojo.Hello">
<constructor-arg index="0" value="Spring2"/>
</bean>
类型复制
<bean id="hello3" class="com.zh1z3ven.pojo.Hello">
<constructor-arg type="java.lang.String" value="Spring3"/>
</bean>
属性名赋值
<bean id="hello4" class="com.zh1z3ven.pojo.Hello">
<constructor-arg name="str" value="Spring4"/>
</bean>
2.set 注入
依赖:bean 对象的注入依赖于 Spring 容器
注入:bean 对象的属性,由容器来注入
3.拓展注入
Student.java
public class Student {
private String name;
private Address address;
private String[] books;
private List<String> hobbys;
private Map<String,String> car
d;
private Set<String> games;
private String wife;
private String apache;
private Properties info;
public String getApache() {
return apache;
}
public void setApache(String apache) {
this.apache = apache;
}
public String[] getBooks() {
return books;
}
public void setBooks(String[] books) {
this.books = books;
}
public List<String> getHobbys() {
return hobbys;
}
public void setHobbys(List<String> hobbys) {
this.hobbys = hobbys;
}
public Map<String, String> getCard() {
return card;
}
public void setCard(Map<String, String> card) {
this.card = card;
}
public Set<String> getGames() {
return games;
}
public void setGames(Set<String> games) {
this.games = games;
}
public String getWife() {
return wife;
}
public void setWife(String wife) {
this.wife = wife;
}
public Properties getInfo() {
return info;
}
public void setInfo(Properties info) {
this.info = info;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Address getAddress() {
return address;
}
public void setAddress(Address address) {
this.address = address;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + ''' +
", address=" + address +
", books=" + Arrays.toString(books) +
", hobbys=" + hobbys +
", card=" + card +
", games=" + games +
", wife='" + wife + ''' +
", info=" + info +
'}';
}
}
beans.xml
<bean id="address" class="com.zh1z3ven.pojo.Address">
<property name="address" value="beijing"/>
</bean>
<bean id="student1" class="com.zh1z3ven.pojo.Student">
<property name="name" value="zh1z3ven"/>
<property name="address" ref="address"/>
<property name="books">
<array>
<value>红楼梦</value>
<value>西游记</value>
<value>水浒传</value>
<value>三国演义</value>
</array>
</property>
<property name="hobbys">
<list>
<value>听音乐</value>
<value>看电影</value>
<value>敲代码</value>
<value>写文章</value>
</list>
</property>
<property name="card">
<map>
<entry key="银行卡" value="1"></entry>
<entry key="身份证" value="2"></entry>
<entry key="学生证" value="3"></entry>
<entry key="电话卡" value="4"></entry>
<entry key="校园卡" value="5"></entry>
</map>
</property>
<property name="games">
<set>
<value>LOL</value>
<value>CF</value>
<value>qq</value>
</set>
</property>
<property name="wife">
<null></null>
</property>
<property name="apache" value=""/>
<property name="info">
<props>
<prop key="id">10</prop>
<prop key="city">北京</prop>
</props>
</property>
</bean>
1.p 命名空间注入,可以直接注入属性值,类似于 bean 标签中 property-name-value
Beans.xml 头部需导入
xmlns:p="http://www.springframework.org/schema/p"
<bean id="user1" class="com.zh1z3ven.pojo.User" p:name="zh1z3ven1" p:age="18"/>
2.c 命名空间注入,通过构造器注入,类似于 construct-args(需要实现有参构造)
xmlns:c="http://www.springframework.org/schema/c"
<bean id="user2" class="com.zh1z3ven.pojo.User" c:name="zh1z3ven2" p:age="19"/>
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
User user1 = context.getBean("user1", User.class);
System.out.println(user1.getName());
System.out.println(user1.getAge());
User user2 = context.getBean("user2", User.class);
System.out.println(user2.getName());
System.out.println(user2.getAge());
}
bean 的作用域
默认 bean 为 scope = singleton 单例模式运行的
显示定义:<bean id="user1" class="com.zh1z3ven.pojo.User" p:name="zh1z3ven1" p:age="18" scope="singleton"/>
单例模式,共享一个对象,比如如下例子,getBean 指向的是同一个 bean,那么在 Spring IoC 容器中仅仅会生成一个"user2"对象保存在内存中,当调用 ApplicationContext.getBean(“user2”)时返回该对象
<bean id="user2" class="com.zh1z3ven.pojo.User" c:name="zh1z3ven2" c:age="19"/>
@Test
public void test(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
User user1 = context.getBean("user2", User.class);
User user2 = context.getBean("user2", User.class);
System.out.println(user1==user2);
}
原型模式 prototype 与 singleton 不同,每次上下文去 getBean()时都会在 Spring IoC 容器内创建一次该对象
还是拿上面的测试代码,可以发现已经不是同一个对象了,有点类似于多态
public void test2(){
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
User user1 = context.getBean("user2", User.class);
User user2 = context.getBean("user2", User.class);
System.out.println(user1==user2);
}
而其余的生命周期在 Web 中才会遇到。
在 xml 显示配置 bean
在 java 代码中配置 bean
隐式自动装配 bean【autowire】
会在容器上下文中自动查找,和自己对象 set 方法后面的值对应的 beanid。也就是这里会去上下文中寻找有无"cat"这个 beanid,有则自动装配,如果并没有匹配上,比如此时 beanid 被修改为了"cat123" 就会跑出异常。
会在容器上下文中寻找该类型与属性值所对应的类型相同的 bean,基于 bean 中的 class(需要在上下文中所有类型各自只出现一次)
<bean id="people" class="com.zh1z3ven.pojo.People" autowire="byType">
评论