1、Spring Framework入门
2021-04-27 01:29
标签:ase express unit art eclips path org inf 目录 步骤: ? 通过该图了解到spring的核心容器是通过Beans、Core、Context以及SpEl 这四个组件构成的 他们对应的依赖如下 而spring的核心容器又依赖于commons-logging 直接点击next即可; 输入GroupId(组名)→ ArtifactId(项目名)→ 一路点击next即可; 创建配置spring配置文件(注意是在resources目录下创建) resources代表项目的类路径(ClassPath) 创建效果如下: 添加junit依赖 创建测试类 测试结果没有报错,则说明容器对象ioc创建成功 1、Spring Framework入门 标签:ase express unit art eclips path org inf 目录 原文地址:https://www.cnblogs.com/Ryuichi/p/13246898.html
导包
创建项目
配置
测试
public class iocTest {
/**
* 通过类路径下的spring配置文件获取ioc对象
* ClassPathXmlApplicationContext就是从类路径下获取xml文件的应用上下文
* 当前配置文件直接放置于类路径下(resources目录)直接传入配置文件名即可
*/
ApplicationContext ioc = new ClassPathXmlApplicationContext("ioc.xml");
/**
* 打印ioc对象
*/
@Test
public void test01(){
System.out.println(ioc.getId());
}
}
文章标题:1、Spring Framework入门
文章链接:http://soscw.com/index.php/essay/79947.html