Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. package com.restfull.core.controllers;
  2.  
  3. import org.springframework.web.bind.annotation.GetMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5.  
  6. @RestController
  7. public class IndexController {
  8.  
  9. @GetMapping("/")
  10. public String helloWorld() {
  11. return "Hello World!";
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement