1、Spring Initializr 构建项目
2、第一个程序Hello World
package com.mingsl.lesson.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
@GetMapping("/hello")
public String hello(){
return "Hello Word";
}
}
注意
原来我们返回json格式需要 @ResponseBody 和 @Controller 配合,Spring 4后新增了@RestController即@ResponseBody和@Controller的组合注解。