Eclipse搭建SpringBoot之HelloWorld详解编程语言

eclipse需要先安装Spring Tool Suite™

File -> new -> other
Eclipse搭建SpringBoot之HelloWorld详解编程语言

选择starter项目
Eclipse搭建SpringBoot之HelloWorld详解编程语言

下一步
Eclipse搭建SpringBoot之HelloWorld详解编程语言

下一步
Eclipse搭建SpringBoot之HelloWorld详解编程语言

勾选Web,Finish。可以看到项目结构与我们自己建的Maven有些不一样。
Eclipse搭建SpringBoot之HelloWorld详解编程语言

新建一个Controller

package com.example.demo; 
 
import org.springframework.web.bind.annotation.RequestMapping; 
import org.springframework.web.bind.annotation.RestController; 
 
@RestController 
public class HelloController { 
    @RequestMapping("/hw") 
    public String hello() { 
        return "Welcome to start SpringBoot!"; 
    } 
}

 

运行
Eclipse搭建SpringBoot之HelloWorld详解编程语言

运行结果
Eclipse搭建SpringBoot之HelloWorld详解编程语言

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/16119.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论