Spring初识二-spring Jar包和配置文件

spring 解压出文档
  libs文件夹结构

Spring最基本的JAR包 :    (1)spring-core:依赖注入IoCDI的最基本实现;                                                           (2)spring-beans:Bean工厂与bean的装配;                                                                   (3)spring-context:springcontext上下文即IoC容器                                                 (4)spring-expressi on:spring表达式语言 ;

2、IOC入门案例:                                                                                                                     第一步:导入基本的四个jar包和支持日志输出的jar包(spring没有提供日志jar包)​                      日志输出jar包:commons-logging-1.2.jar和log4j-1.2.16.jar                           第二步:创建类,在类里面创建方法。                                                                           第三步:创建Spring配置文件,配置创建类                                                                                  配置文件名称和位置不是固定的,官方建议名字applicationContext.xml ;                        引入schema约束 (基本的schema约束)                                                       <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                                配置对象创建     

         第四部:写代码测试对象创建                                                                                          加载配置文件:                                                                         ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");                                       User user = (User) context.getBean("user")  获得bean中的对象    


                                    



你可能感兴趣的:(Spring初识二-spring Jar包和配置文件)