spring 框架的筆記

beans.xml:

<?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-3.0.xsd">

// id 是個標識符, 給實現類方法調用時所用的標記.

//name 是指get和set 方法的名字

//value 是get和set 方法里傳遞的值

<bean id="helloWorld" class="com.tutorialspoint.HelloWorld">
<property name="aaa" value="123"/>
<property name="bbb" value="456"/>
</bean>

</beans>

原文地址:https://www.cnblogs.com/andyFok/p/9548442.html