失效链接处理 |
Spring IOC基本使用 PDF 下载
本站整理下载:
相关截图:
主要内容:
1、spring_helloworld
(1)使用手动加载jar包的方式实现,分为三个步骤,现在几乎不用
导包:导入这五个包即可
commons-logging-1.2.jar
spring-beans-5.2.3.RELEASE.jar
spring-context-5.2.3.RELEASE.jar
spring-core-5.2.3.RELEASE.jar
spring-expression-5.2.3.RELEASE.jar
写配置
Person.java
package com.mashibing.bean; public class Person { private int id; private String name; private int age; private String gender; 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; }public int getAge() { return age; }public void setAge(int age) { this.age = age; }public String getGender() { return gender;
}public void setGender(String gender) { this.gender = gender; }@Override public String toString() { return "Person{" + "id=" + id + ", name='" + name + '\'' + ", age=" + age + ", gender='" + gender + '\'' + '}'; } }
ioc.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.xsd"> <!--注册一个对象,spring回自动创建这个对象--> <!-- 一个bean标签就表示一个对象 id:这个对象的唯一标识 class:注册对象的完全限定名 --> <bean id="person" class="com.mashibing.bean.Person"> <!--使用property标签给对象的属性赋值 name:表示属性的名称 value:表示属性的值 --> <property name="id" value="1"></property> <property name="name" value="zhangsan"></property> <property name="age" value="18"></property> <property name="gender" value="男"></property> </bean> </beans>
|