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.

26 lines
1.0 KiB

This file contains ambiguous Unicode characters!

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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 实验室Lab实体beansetter属性注入 -->
<bean id="lab" class="com.ssm.ioc.Lab">
<property name="labId" value="1001"/>
<property name="labName" value="计算机创新实验室"/>
<property name="labLocation" value="工科楼302"/>
<property name="labManager" value="张老师"/>
<property name="labCapacity" value="50"/>
</bean>
<!-- 材料Material实体beansetter属性注入 -->
<bean id="materialz" class="com.ssm.ioc.Materialz">
<property name="materialId" value="2001"/>
<property name="materialName" value="实验钢材"/>
<property name="materialType" value="金属耗材"/>
<property name="materialStock" value="300"/>
</bean>
</beans>