Eclipse搭建Sprintboot开发环境详细教程
目录
一、配置sts插件
二、新建Spring Start Project项目
三、编写测试代码
一、配置sts插件
1、打开eclipse>help>Eclipse marketplace…
2、在find中输入“Spring”搜索找到“Spring Tools”,然后点击右下角“install”安装
3、点击“Confirm”
4、勾选接受,然后点击“Finish”
注意:安装完sts需要重启eclipse,再进行下面的步骤。
二、新建Spring Start Project项目
1、File>new>Other…
2、找到“Spring Boot”下面的“Spring Starter Project”,然后点击“next”
3、根据自己的情况修改Name、Group、Artifact、Package。
也可以不用修改,直接点击“next”
4、找到“Web”勾选“Spring Web”,最后点击右下角的“Finish”
5、下面这种即创建成功。
三、编写测试代码
1、在src/main/java com下的com.springboot.firstdemo包中新建一个Test类
2、Test类中输入下面代码
package com.spring.springboot.firstdemo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class FirstdemoApplication {
public static void main(String[] args) {
SpringApplication.run(FirstdemoApplication.class, args);
}
}
3、 打开FirstdemoApplication类,右键——>run as ——>spring boot app启动项目
4、访问http://localhost:8080/hello
5、若返回hello spring boot 说明项目搭建成功