Guest User

Untitled

a guest
Mar 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public class ContextHolder {
  2. private static ClassPathXmlApplicationContext context;
  3.  
  4. public static getSpringContext() {
  5. if (context == null) {
  6. context = new ClassPathXmlApplicationContext("applicationContext.xml");
  7. }
  8. return context;
  9. }
  10. }
  11.  
  12. try (final ClassPathXmlApplicationContext applicationContext =
  13. new ClassPathXmlApplicationContext("applicationContext.xml")) {
  14. //do stuff
  15. }
Add Comment
Please, Sign In to add comment