欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

eclipse搭建maven spring -boot项目

程序员文章站 2022-07-12 13:39:42
...

1.首先配置环境变量等等就不说了
2.打开eclipse,点击file-new -project
eclipse搭建maven spring -boot项目
3.选择maven项目,点击next
eclipse搭建maven spring -boot项目
4.勾上下面两个,点击next
eclipse搭建maven spring -boot项目
5.应该是直接点击next
eclipse搭建maven spring -boot项目
6。写好包名,项目名,点击next
eclipse搭建maven spring -boot项目
7.点击finish
8.在pom.xml文件中加入以下代码

 <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
</parent>
<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

全部效果如下:
eclipse搭建maven spring -boot项目

9.在src/main/java 下新建一个启动类

@Controller
@EnableAutoConfiguration
public class App 
{
    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "Hello World!";
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(App.class, args);

}

}

10.右键,run as-java application,启动
eclipse搭建maven spring -boot项目
11.没报错,出现这个,好了,启动成功
eclipse搭建maven spring -boot项目

12.打开浏览器,输入http://localhost:8080/
eclipse搭建maven spring -boot项目

以上就是用eclipse初步搭建spring-boot框架的全部内容,后续连接数据库等持续更新。。。。