Advertisement
Guest User

Untitled

a guest
Aug 10th, 2017
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4.  
  5. @RestController
  6. @EnableAutoConfiguration
  7. public class controllerDepo {
  8.  
  9. @RequestMapping("/lista")
  10. public String home() {
  11. return "hola";
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement