创建一个 Spring 项目的基本步骤如下:
1. 引入jar包 → 2. 创建Javabean → 3. 创建Spring的配置文件 → 4. 创建一个主函数入口
首先,我们需要下载Spring
的jar
包 ,为了更好的理解Spring
的jar
包依赖,我们不使用maven
创建,也不用web.xml
文件来初始化加载Spring
容器,原始打造。主要目的是为了能观察到一个简单的Spring
项目是什么样子。
- 首先创建
lib
文件夹,引入jar
包,包括4
个核心包(beans
、core
、context
、expression
) +1
个依赖(commons-loggins…jar
)包:
创建Javabean
创建一个HelloWorld.class
public class HelloWorld {
public HelloWorld(){
System.out.println("初始化构造器");
}
}
创建Spring配置文件,并添加配置对象
-
位置:任意,开发中一般在
classpath(src)
下 -
名称:任意,开发中通用
applicationContext.xml
因此项目结构如下:
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
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="helloworld" class="educoder.HelloWorld"></bean>
<!-- 注意class 属性值要求为类的全路径 -->
</beans>
创建一个主函数入口
我们需要一个测试类,来检测我们的 Spring 项目是否可用:
public class Test {
public static void main(String[] args) {
//1、创建Spring的IOC容器对象
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
//2、从IOC的容器中获取Bean实例
HelloWorld helloWorld = (HelloWorld) applicationContext.getBean("helloworld");
}
}
然后我们运行程序,若执行完成得到如下结果,说明你的 Spring 项目已经创建成功:
参考答案:
HelloWorld.java
package step1;
public class HelloWorld {
public void HelloString(){
System.out.println("Hello Spring");
}
}
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
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="hellost" class="step1.HelloWorld"></bean>
</beans>
Test1.java
package step1;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import step1.HelloWorld;
public class Test1 {
public static void main(String[] args) {
ApplicationContext app = new ClassPathXmlApplicationContext("applicationContext.xml");
HelloWorld hellost = (HelloWorld)app.getBean("hellost");
hellost.HelloString();
}
}