- 浏览: 13498 次
- 性别:
- 来自: 青岛
最新评论
文章列表
1属性注入。其实就是把对象里属性的值从xml读取出来,然后通过set方法设置到对象中。
开始
1、新建项目,spring_ioc
2、新建一个类User,包是com.spring.model
代码如下
package com.spring.model;
public class User {
private int userId;
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
public St ...
先看这个xml文件
先看这个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.springframewo ...