eclipse搭建springboot示例

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/k_prince/article/details/86541618

1. 下载STS(Spring Tool Suite)插件

Help -> Eclipse Marketplace 搜索spring

2. File->new->other

选择Spring Starter Project

3.next 设置springboot项目各参数

next 选择web

3.在com.springboot.demo包下创建HellowController

package com.springboot.demo;

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


@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String hello() {
        return "Hello Spring Boot!";
    }
}

4.右击springboot项目,run as->Spring Boot App

在浏览器输入localhost:8080/hello即可访问我们的示例项目

猜你喜欢

转载自blog.csdn.net/k_prince/article/details/86541618