Advertisement
Latinist

Untitled

Apr 9th, 2020
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package com.antonromanov.springboothelloworld;
  2.  
  3. import org.springframework.web.bind.annotation.*;
  4.  
  5. @RestController
  6. @RequestMapping("/api")
  7. public class JdbcController {
  8.  
  9.     @GetMapping("/all")
  10.     public String gelAllWishes() {
  11.         return "1";
  12.     }
  13.  
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement