通过Spring入门程序向同学展示Spring框架的使用过程,该入门程序要求再控制台打印“Hello Spring!”,具体实现步骤如下:
- 创建Java项目
- 导入Spring核心Jar包
- 创建Spring配置文件
- 创建HelloSpring类
- 创建测试类
1.创建Java项目
Idea创建Java项目,项目名称为:case01-spring-hello。
2.导入Spring核心Jar包
case01-spring-hello项目下创建lib目录,在lib目录下导入Jar包:
- 核心包
spring-core-5.3.25.jar
spring-beans-5.3.25.jar
spring-context-5.3.25.jar
spring-expression-5.3.25.jar
- 测试包
junit-4.6.jar
- 依赖包
commons-logging-1.2.jar
3.创建Spring配置文件
src目录下创建applicationContext.xml配置文件。
<beansxmlns="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"><!-- 将HelloSpring类配置给Spring,让Spring创建其实例 --><beanid="helloSpring"class="com.wfit.HelloSpring"/></beans>
4.创建HelloSpring类
src目录下创建com.wfit包,此包目录下创建HelloSpring类,实现hello方法。
publicclassHelloSpring { publicvoidhello(){ System.out.println("hello Spring!"); } }
5.创建测试类
com.wfit目录下创建TestHelloSpring测试类。
publicclassTestHelloSpring { publicvoidtest(){ //初始化Spring容器ApplicationContext,加载配置文件ApplicationContextapplicationContext=newClassPathXmlApplicationContext("applicationContext.xml"); //通过容器获取HelloSpring实例HelloSpringhelloSpring= (HelloSpring) applicationContext.getBean("helloSpring"); helloSpring.hello(); } }
6.执行结果
在IDEA中启动TestHelloSpring测试类,控制台会输出结果。