1、Spring Framework入门

  • 该程序使用工具为IDEA,Eclipse配置同理
  • 该程序是一个Maven程序,通过Maven导包

步骤:

  1. 导入相关jar包
  2. 创建spring上下文配置
  3. 测试

导包

​ 通过该图了解到spring的核心容器是通过Beans、Core、Context以及SpEl 这四个组件构成的

1、Spring Framework入门_第1张图片

他们对应的依赖如下



    org.springframework
    spring-beans
    4.0.0.RELEASE



    org.springframework
    spring-context
    4.0.0.RELEASE



    org.springframework
    spring-core
    4.0.0.RELEASE



    org.springframework
    spring-expression
    4.0.0.RELEASE

而spring的核心容器又依赖于commons-logging


    commons-logging
    commons-logging
    1.1.3

创建项目

1、Spring Framework入门_第2张图片

直接点击next即可;

1、Spring Framework入门_第3张图片

输入GroupId(组名)→ ArtifactId(项目名)→ 一路点击next即可;

配置

创建配置spring配置文件(注意是在resources目录下创建)

resources代表项目的类路径(ClassPath)
1、Spring Framework入门_第4张图片

创建效果如下:

测试

添加junit依赖


    junit
    junit
    4.11
    test

创建测试类

public class iocTest {
    /**
     * 通过类路径下的spring配置文件获取ioc对象
     * ClassPathXmlApplicationContext就是从类路径下获取xml文件的应用上下文
     * 当前配置文件直接放置于类路径下(resources目录)直接传入配置文件名即可
     */
    ApplicationContext ioc = new ClassPathXmlApplicationContext("ioc.xml");
    /**
     * 打印ioc对象
     */
    @Test
    public void test01(){
        System.out.println(ioc.getId());
    }
}

测试结果没有报错,则说明容器对象ioc创建成功

你可能感兴趣的:(1、Spring Framework入门)