HelloSpring

这篇博客介绍了如何开始使用Spring框架。首先在pom.xml文件中导入spring-webmvc依赖,接着创建了一个Hello实体类。然后在applicationContext.xml配置文件中定义Bean,并注入Hello实体类,设置其name属性为'HelloSpring'。最后通过测试类从Spring上下文中获取并打印Hello对象,验证配置无误。
摘要由CSDN通过智能技术生成

第一个Spring----HelloSpring

  • 1.在pom.xml导入依赖
    <dependencies>
        <!--导入spring-webmvc他会帮我们下载spring其他的依赖jar包-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.3.15</version>
        </dependency>
    </dependencies>

    <!--maven资源过滤问题    -->
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
  • 2.创建一个实体类
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 + '\'' +
                '}';
    }
}
  • 3.创建applicationContext.xml(叫别的名字也行),并把实体类注入到ioc容器
<?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">

    <!--
    使用Spring 来创建对象,在Spring中这些都称为bean

        类型 类型名  = new 类型();
        Hello hello = new Hello();

        id = 变量名
        class = new 的对象 全路径
        property 相当于给对象中的属性设置一个值


        -->

    <bean id="hello" class="com.lm.pojo.Hello">
        <property name="name" value="Hello Spring"/>
    </bean>

</beans>
  • 4.测试
public class MyTest {
    public static void main(String[] args) {
        // 获取Spring上下文对象
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //我们的对象现在都在Spring中管理了,我们要使用直接从里面取出来就可以了!
        Hello hello = (Hello) context.getBean("hello");
        System.out.println(hello.toString());

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值