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" >
<!-- 完成Bean的创建, 实例化Student对象, 实现Student labPeopleManagement=new Student();效果 -->
<bean id= "labPeopleManagement" class= "com.ssm.ioc.LabPeopleManagement" >
<property name= "stuName" value= "小王" />
<property name= "stuNo" value= "20170101" />
<property name= "tcrName" value= "李老师" />
<property name= "tcrNo" value= "xinxi033" />
</bean>
</beans>