TestController.java 298 B

12345678910111213
  1. package com.poyee.controller;
  2. import org.springframework.web.bind.annotation.GetMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. @RestController
  5. public class TestController {
  6. @GetMapping("/hello")
  7. public String helloWorld() {
  8. return "Hello World!";
  9. }
  10. }