eclipse搭建springboot该怎么实现?步骤有哪些?

只要是学习过java的小伙伴,相信一定对eclipse十分熟悉吧,这是小编第一次编写java项目就是使用的eclipse,今天我们就来看看,在eclipse中如何搭建Springboot项目

一、Help -> Eclipse Marketplace安装所需插件

打开search,输入 'STS'

eclipse搭建springboot

eclipse搭建springboot

点击install安装!

二、new -> project -> other -> Spring start project正式创建项目

eclipse搭建springboot

eclipse搭建springboot

点击finsh SpringBoot项目创建完成 ,下面我们可以写一个测试demo

package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication
{
    public static void main(String[] args)
    {
        SpringApplication.run(DemoApplication.class, args);
        System.out.println(" ----------------------------------------    ");
        System.out.println(" ----------------------------------------    ");
        System.out.println(" ----------------------------------------    ");
        System.out.println("SPRINGBOOT SUCCESS!!");
        System.out.println(" ----------------------------------------    ");
        System.out.println(" ----------------------------------------    ");
        System.out.println(" ----------------------------------------    ");
    }
}

创建helloController.java

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestControllerpublic class helloController
{
    @RequestMapping("/hello") public String test()
    {
        return "hello,this is a springboot demo";
    }
}

eclipse搭建springboot

运行就可以了。

以上就是今天的全部内容了,你知道怎么创建springboot了吧,如果还有其他java项目中常见问题,可以来关注我们网站了解答案。

推荐阅读:

springboot集成shiro需要怎么做?

springboot打war包部署如何配置?

springboot2.0新特性有哪些?