You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<?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" >
<!-- 配置Student实体类的Bean, 采用Setter方法注入 -->
<bean id= "student" class= "com.ssm.di.Student" >
<!-- 依赖注入属性值,根据实际需求修改属性值 -->
<property name= "studentId" value= "2026001" />
<property name= "studentName" value= "张三" />
<property name= "className" value= "计科2班" />
<property name= "major" value= "计算机科学与技术" />
<property name= "age" value= "20" />
<property name= "phone" value= "13800138000" />
</bean>
</beans>