读书人

Spring简略属性注入

发布时间: 2012-08-22 09:50:35 作者: rapoo

Spring简单属性注入

package com.zchen.property;public class User {private int id;private String name;public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}}

?

<?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-2.5.xsd">  <bean id="user" value="2" />  <property name="name" value="zchen" />  </bean></beans>

?

读书人网 >软件架构设计

热点推荐