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

第一步:创建一个Maven项目

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

创建Maven project
在Idea创建spring第一个项目--HelloWorld_第1张图片

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

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

在Idea创建spring第一个项目--HelloWorld_第2张图片

第三步:第一个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 的配置文件
在Idea创建spring第一个项目--HelloWorld_第3张图片
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、结果
在Idea创建spring第一个项目--HelloWorld_第4张图片

你可能感兴趣的:(Spring)