Created
April 30, 2018 03:56
-
-
Save benfogel/5a0a818f19aef731bbb9494e9f1341e5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RestController | |
@RequestMapping("/scope") | |
public class TestController { | |
@Autowired | |
private IncorrectScopeBean incorrectScopeBean; | |
@GetMapping("/incorrect") | |
public String callIncorrectScopeField(@RequestParam String requestId) throws InterruptedException { | |
return incorrectScopeBean.run(requestId); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment