Advertisement
Latinist

Untitled

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