Package org.springframework.tests.sample.beans

Examples of org.springframework.tests.sample.beans.ITestBean.unreliableFileOperation()


    ITestBean bean = (ITestBean) ctx.getBean("testBean");
    ExceptionHandlingAspect aspect = (ExceptionHandlingAspect) ctx.getBean("aspect");

    assertTrue(AopUtils.isAopProxy(bean));
    try {
      bean.unreliableFileOperation();
    }
    catch (IOException e) {
      //
    }
View Full Code Here


    itb.getDoctor();
    itb.getStringArray();
    itb.getSpouses();
    itb.setSpouse(new TestBean());
    try {
      itb.unreliableFileOperation();
    } catch (IOException ex) {
      // we don't realy care...
    }
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.