最近学习SpringBoot,真的是人菜了,连平路都能走出坑。。。。。
代码
package com.example.demo.controller;
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 world";
}
}
idea创建Spring Initialzr工程(小白日记)
原文:https://www.cnblogs.com/jianjiana/p/15048298.html