Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. @Component
  2. public class EnvConfig {
  3. //...
  4. }
  5.  
  6. public class EmployeeBean {
  7.  
  8. @Autowired
  9. EnvConfig envConfig;
  10.  
  11. //...
  12.  
  13. public void getSpecialInfo()
  14. {
  15. envConfig.method1();
  16. envConfig.method2();
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement