eclipse创建springboot项目的三种方法

方法一

安装STS插件

eclipse创建springboot项目的三种方法_第1张图片

eclipse创建springboot项目的三种方法_第2张图片

安装插件导向窗口完成后,在eclipse右下角将会出现安装插件的进度,等插件安装完成后重启eclipse生效

 

新建spring boot项目

eclipse创建springboot项目的三种方法_第3张图片

 

eclipse创建springboot项目的三种方法_第4张图片

项目启动

eclipse创建springboot项目的三种方法_第5张图片

 

方法二

1.创建Maven项目

eclipse创建springboot项目的三种方法_第6张图片

2.选择项目类型

eclipse创建springboot项目的三种方法_第7张图片

3.选择项目

eclipse创建springboot项目的三种方法_第8张图片

4.编写项目组和名称-finish即可

eclipse创建springboot项目的三种方法_第9张图片

5.修改pom.xml文件

    org.springframework.boot

    spring-boot-starter-parent

    2.0.2.RELEASE

eclipse创建springboot项目的三种方法_第10张图片

6.pom.xml中添加依赖

    org.springframework.boot

    spring-boot-starter-web

eclipse创建springboot项目的三种方法_第11张图片

7.pom.xml中添加编译插件

    

    

        

            org.springframework.boot

            spring-boot-maven-plugin

        

    

eclipse创建springboot项目的三种方法_第12张图片

8.基础包和类

eclipse创建springboot项目的三种方法_第13张图片

 

9.创建resources文件夹和application.properties文件

eclipse创建springboot项目的三种方法_第14张图片

10.App.java

package com.springboot.springbootDemo;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication

public class App

{

    public static void main( String[] args )

    {

        SpringApplication.run(App.class, args);

    }

}

eclipse创建springboot项目的三种方法_第15张图片

 

11.HelloController.java

package com.springboot.springbootDemo.controller;

import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.RestController;

@RestController

@RequestMapping("hello2")

public class HelloController {

       @RequestMapping("")

       public String hello() {

              return "helloworld2";

       }

}

eclipse创建springboot项目的三种方法_第16张图片

12.启动项目

eclipse创建springboot项目的三种方法_第17张图片

13.访问项目(低版本可能无法访问,2版本可用)

http://localhost:8012/hello2

eclipse创建springboot项目的三种方法_第18张图片

 

方法三

访问http://start.spring.io/

eclipse创建springboot项目的三种方法_第19张图片

点击Generate Project下载项目压缩包

解压后,使用eclipse,Import -> Existing Maven Projects -> Next ->选择解压后的文件夹-> Finsh,OK done!

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(springboot)