Advertisement
ArturCzopek

swagger-hello-2

Apr 20th, 2017
15,746
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. import org.springframework.web.bind.annotation.RequestMapping;
  2. import org.springframework.web.bind.annotation.RestController;
  3.  
  4. @RestController
  5. public class HelloController {
  6.  
  7.     @RequestMapping("/hello")
  8.     public String hello() {
  9.         return "Hello, swagger!";
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement