Eclipse 新建 Spring Boot 项目

2020-03-09  本文已影响0人  毕加森
New Spring Starter Project 1.png New Spring Starter Project 2.png New Spring Starter Project 3.png

实现REST请求

package com.spring.boot.test.controller;

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

@RestController
public class TestController {

    @RequestMapping("hello")
    public String hello(String name) {
        return "Spring Boot Test Hello Name " + name;
    }
    
}
上一篇下一篇

猜你喜欢

热点阅读