在学习Spring前,你需要明白反射到底是个什么东西?以及单例设计模式、工厂模式、代理模式,以及maven如何使用?
说明:这个Demo只是为了快速理解而已。
以下内容不做过多解释,对于以下内容不清楚的,可以看下我这篇文章
Spring入门-IoC&&DI
文章目录
1、使用的版本:
IDEA-2017
maven-3.6.0
springframework:5.0.2.RELEASE
2、创建maven工程后,导入依赖
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.0.2.RELEASE</version>
</dependency>
</dependencies>
3、创建Service类:
package com;
public class Service {
private int age =22;
private String name = "张三";
public void Info(){
System.out.println("你要查询的是,"+name+"年龄为,"+age);
}
}
4、编写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="service" class="com.Service">