Guest User

Untitled

a guest
Jan 20th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public static void main(String[] args) {
  2. new ClassPathXmlApplicationContext("/springtests/test01.xml");
  3. }
  4.  
  5. ApplicationContext ctx = new ClassPathXmlApplicationContext("/springtests/test01.xml");
  6. MyClass myObj= MyClass.class.cast(ctx.getBean("myBeanName"));
  7. myObj.doStuff();
  8.  
  9. public static CountDownLatch shutdownLatch = new CountDownLatch(1);
  10. public static void main(String[] args) {
  11. ApplicationContext context =
  12. new ClassPathXmlApplicationContext("/springtests/test01.xml");
  13. try {
  14. shutdownLatch.await();
  15. } finally {
  16. context.close();
  17. }
  18. }
Add Comment
Please, Sign In to add comment