只要是学习过java的小伙伴,相信一定对eclipse十分熟悉吧,这是小编第一次编写java项目就是使用的eclipse,今天我们就来看看,在eclipse中如何搭建Springboot项目。
一、Help -> Eclipse Marketplace安装所需插件
打开search,输入 'STS'
点击install安装!
二、new -> project -> other -> Spring start project正式创建项目
点击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"; } }
运行就可以了。
以上就是今天的全部内容了,你知道怎么创建springboot了吧,如果还有其他java项目中常见问题,可以来关注我们网站了解答案。
推荐阅读: