?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 class="com.itheima.pojo.Student" id="student"> <property name="name" value="张三"/> <property name="age" value="20"/> <property name="cid" value="1"/> <property name="id" value="4"/> <property name="class" ref="class"/> </bean> <bean class="com.itheima.dao.impl.StudentImpl" id="studentimpl"/> <bean class="com.itheima.service.impl.StudentService" id="studentService"> <property name="userDao" ref="studentimpl"/> </bean> <bean class="com.itheima.service.impl.StudentService" id="studentService"> <property name="userDao" ref="studentimpl"/> <property name="classService" ref="classService"/> </bean> <!--任务5:注入班级bean【10分】--> <bean class="com.itheima.pojo.Class" id="class"> <property name="name" value="一年级一班"/> <property name="teacher" value="李老师"/> </bean> </beans>
时间: 2023-10-25 09:10:04 浏览: 115
脚本可以批量去除XML文件中的<?xml version=“1.0“ encoding=“utf-8“?>
这是一个 Spring 的配置文件,其中包含了多个 bean 的定义。每个 bean 都有一个类名和一个 id,类名指定了对应的 Java 类,id 是该 bean 的唯一标识符。在这个配置文件中,有一个名为 student 的 bean,它引用了一个名为 class 的 bean。另外还有名为 studentimpl 和 studentService 的 bean,它们分别引用了名为 studentimpl 和 classService 的 bean。最后还有一个名为 class 的 bean,用于注入班级信息。
阅读全文