Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. package testApp.controller;
  2.  
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.RestController;
  6.  
  7. @RestController
  8. @RequestMapping("/")
  9. public class Controller {
  10.  
  11. @GetMapping("/hello")
  12. public String hello(){
  13. return "Hello World";
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement