AuthorController.java 476 B

123456789101112131415161718
  1. package com.sf.controller;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * @RestController 是Controller中的一种
  6. * 在不需要返回页面 只需要返回数据的时候 可以被使用
  7. */
  8. @RestController
  9. public class AuthorController {
  10. @GetMapping("/author")
  11. public String getAll(){
  12. return "liucixin ligang luyao";
  13. // return "刘慈欣 李刚 路遥";
  14. }
  15. }