初始Spring框架

Posted 努力奋斗吧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了初始Spring框架相关的知识,希望对你有一定的参考价值。

Spring入门案例的步骤;
    1.找依赖
       spring-beans.4.2.0.jar
            附带了core核心 和commons-logging
       spring-context.4.2.0.jar
               spring-expression.4.2.0.jar
               spring-aoplple.4.2.0.jar
               spring-aop.4.2.0.jar
    2.HappyService类型
 
    3 beans 根节点下有N个bean节点
      <bean id="service" class="类型的全名">

    4.容器
    ApplicationContext ctx=new  ClassPathXmlApplicationContext("applictionContext.xml");
        HappyService service=  (HappyService)ctx.getBean("service");

下面我们写一个例子:

实体类:

private String info;
private Integer age;

public Integer getAge() {
return age;
}
public void setAge(Integer age) {
this.age = age;
}

public void setInfo(String info) {
this.info = info;
}
public String getInfo() {
return info;
}

@Override
public String toString() {
return "HappyService{" +
"info=\'" + info + \'\\\'\' +
", age=" + age +
\'}\';
}


applicationContext.xml文件:
<!--IOC 控制反转-->
<bean id="happyService" class="cn.happy.day01.HappyService">
<!--DI 依赖-->
<property name="info" value="李四"></property>
<property name="age" value="20"></property>
</bean>

测试类:
@Test
public void Test(){
//Spring容器
ApplicationContext context=new ClassPathXmlApplicationContext("applicationContext.xml");
//返回值必须进行强转
HappyService bean = (HappyService)context.getBean("happyService");
System.out.println(bean);
}



结果如下:

 





 

以上是关于初始Spring框架的主要内容,如果未能解决你的问题,请参考以下文章

Spring MVC源码 ----- 启动过程与组件初始化

Java框架Spring是用来干啥的?

初始Spring和IOC理解

Jekyll 偏移代码片段高亮的初始行

如何使用 Swift 使用此代码片段为 iOS 应用程序初始化 SDK?

Spring 框架的环境搭建