在Idea创建spring第一个项目--HelloWorld

第一步:创建一个Maven项目

菜单栏-》File-》New-》Project-》Mave -》项目名称为SpringTest

创建Maven project
在这里插入图片描述

第二步:配置POM.xml文件导入Spring 的jar包

在这个网址中找到需要的spring版本https://mvnrepository.com/artifact/org.springframework/spring-context

在这里插入图片描述

第三步:第一个Spring程序

1、创建一个JavaBean

package com.test01;

public class HelloWorld {
    private String name ;

    public HelloWorld(){
        System.out.println("HelloWorld Constructor");
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
    public void helloMethod(){
        System.out.println("hello world");
    }

}

2、创建spring 的配置文件
在这里插入图片描述
3、配置bean

<?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 http://www.springframework.org/schema/beans/spring-beans.xsd">

    <!--配置bean-->
    <bean id="helloWorld" class="com.test01.HelloWorld">
        <property name="name" value="Spring"></property>

    </bean>
</beans>

4、运行主类

package com.test01;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class Main {

    public static void main(String[] args){

       /* 1创建HelloWorld的一个对象
        HelloWorld helloWorld = new HelloWorld();
        2为name属性赋值
        helloWorld.setName("meimei");
        */
       //1.创建Spring 的IOC 容器对象
       ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
        //2.从IOC容器中获取Bean实例
        HelloWorld helloWorld = (HelloWorld)ctx.getBean("helloWorld");
        //调用hello方法
       helloWorld.helloMethod();
    }
}

5、结果
在这里插入图片描述

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值