Hello Spring

Hello Spring第一个SpringDemo

第一步:在idea中新建一个Maven项目,打开pom.xml,注入SpringFreamworkJunit依赖:

<dependencies>
    <!-- https://mvnrepository.com/artifact/junit/junit -->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
        <scope>test</scope>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-webmvc</artifactId>
        <version>5.2.12.RELEASE</version>
    </dependency>
</dependencies>

第二步:编写pojo实体类:

package com.wzq.pojo;

public class hello {
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return "hello{" +
                "name='" + name + '\'' +
                '}';
    }
}

第三步:编写beans.xml配置文件

<?xml version="1.0" encoding="UTF-8"?>
<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
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <!-- 
    	一个bean对应一个对象
        对象hello 
        id:名字
        class 要放入bean的类,需要写全类名
    -->
    <bean id="hello" class="com.wzq.pojo.hello">
        <!-- 
            property : 设置属性
            name:属性的名字
            value:要设置的值(基本数据类型)
            ref:引用Spring已创建的对象
         -->
        <property name="name" value="Hello Spring"/>
    </bean>

</beans>

第三步:测试:

import com.wzq.pojo.hello;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class MyTest {
    @Test
    public void Test(){
        //获取Spring Context对象
        ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
        //对象都在Spring中管理,要使用可以直接拿
        hello hello =(hello) context.getBean("hello");
        System.out.println(hello);
    }
}

在这里插入图片描述
OK!

对象放在beans.xml,用的时候通过ClassXmlPathXmlApplicationContext拿就可以了,这个名字好长,可以这样记:擦C皮P鞋X啊A艹C

所谓的Ioc就是对象由Spring创建、管理、分配!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值