笑傲Java面试:面霸修炼手册
V: ititit111222333
package com.imooc.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
@RequestMapping("sso")
public class HelloController {
@ResponseBody
@GetMapping("test")
public String test() {
return "test is ok";
}
}