2021-09-11

IDEA环境搭建和Spring入门

一、IDEA环境搭建和Spring入门

1.IDEA环境搭建

(1)JDK8的安装与环境配置:

2021-09-11

(上学期在对Java进行学习时已经安装好了,所以具体过程与环境配置就不过多阐述)

(2)IDEA的安装与配置

①利用安装包,点击下载:
2021-09-11②将安装地址转换到内存足够大的盘中;选择64-bit launcher,其余默认设置,然后install等待安装
2021-09-11
③安装完成
2021-09-11

(3)IDEA的测试

①Create New Project——>Java
2021-09-11

②填写项目名称和选择存放位置
2021-09-11

③在scr中新建一个包
2021-09-11

④在包下新建一个类
2021-09-11

⑤在类中输入以下代码

public class Test {
    public static void main(String args[])
    {  System.out.println("|—————————————|");
        System.out.println("|我写的Java程序|");
        System.out.println("|—————————————|");
    }
}

测试成功
2021-09-11

2.创建Java类型的project

①在scr中新建一个包
2021-09-11

②在包中新建一个类
2021-09-11

③在类中输入代码

public static void main(String args[])
    {
        System.out.println("Hello World");
    }

得到结果
2021-09-11

二、.创建Spring类型的 Project

1.不使用框架

①新建一个文件创建时勾选 Create empty spring-config.xml文件
2021-09-11

②新建一个包
③在包中新建一个HelloWorld类和一个Main类
2021-09-11
2021-09-11

④在HelloWorld类中输入

String name;
    public void setName(String name)
    {
        this.name = name;
    }
    public void sayHello()
    {
        System.out.println("Hello: "+name);
    }

在Main类中输入

 public static void main(String[] args)
    {
        //1.创建helloWorld对象        
        HelloWorld helloworld = new HelloWorld();
        //2.为name属性赋值        
        helloworld.setName("Spring");
        //3.调用sayHello方法        
         helloworld.sayHello();
    }

⑤得到结果
2021-09-11

2.使用框架

①在.xml配置中加入

 <bean id="helloWorld" class="HelloWorld">
        <property name="name" value="Spring"></property>
    </bean>

②在Main类中修改代码为

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

public class Main {

    public static void main(String[] args) {
//        HelloWorld helloWorld = new HelloWorld();
//        helloWorld.setName("Spring");
//        helloWorld.sayHello();

        ApplicationContext context = new ClassPathXmlApplicationContext("spring-config.xml");

        HelloWorld helloWorld = (HelloWorld) context.getBean("helloWorld");

        helloWorld.sayHello();

    }

}

③测试
2021-09-11

上一篇:IDEA环境搭建和Spring入门


下一篇:IDEA环境搭建和Spring入门