hello.java 401 B

1234567891011121314
  1. package com.imooc.demo;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RequestMethod;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @RestController
  6. public class hello {
  7. @RequestMapping(value = "/hello",method = RequestMethod.GET)
  8. public String hello(){
  9. return "Hello SpringBoot";
  10. }
  11. }