Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @Component
  2. public class MyQuartzJob implements Job{
  3.  
  4. private restApiConfiguration =null;
  5.  
  6. @PostConstruct
  7. public void init() {
  8. restApiConfiguration = new ApiConfiguration();
  9. }
  10.  
  11.  
  12. someOtherMethod(){
  13. //restApiConfiguration is null here
  14. restApiConfiguration.getWebServiceUrl();
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement