Guest User

Untitled

a guest
Jan 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @Autowired
  2. private ClientService clientService;
  3.  
  4. public void methodA() {
  5. String url = ...
  6. ResponseEntity<String> resEntity = clientService.callService(url);
  7. }
  8.  
  9. clientService.callService(url);
  10.  
  11. ResponseEntity resEntity = clientService.callService(url);
Add Comment
Please, Sign In to add comment