思路
导入Spring---编写代码-----配置spring文件----测试
导入Spring
- 需要先在idea中创建一个普通的Maven项目
- 在Maven项目pom.xml中导入Spring依赖
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.2</version>
</dependency>
测试需要的junit
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
编写实体类Hello
package com.why.pojo;
public class Hello {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "Hello{" +
"name='" + name + '\'' +
'}';
}
}
配置spring文件
在项目的resources下创建applicationContext.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
https://www.springframework.org/schema/beans/spring-beans.xsd">
<!-- 使用Spring来创建对象,在Spring这些被称为Bean
类型 变量名 = new 类型();
Hello hello = new Hello();
id = 变量名
class = new的对象
property 相当于给对象中的属性一个值
-->
<bean id="hello" class="com.why.pojo.Hello">
<property name="name" value="了春风"/>
<!--
value:具体的值,基本数据类型
ref:引用Spring容器中创建好的对象
-->
</bean>
</beans>
测试
import com.why.pojo.Hello;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class MyTest {
@Test
public void test() {
//获取Spring的上下文对象!
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//我们的对象现在都在Spring中管理了,我们要使用,就直接去里面取出来用
Hello hello = context.getBean("hello", Hello.class);
System.out.println(hello.toString());
}
}
网友评论