Spring Framework
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AppRunner.class); HelloWorldServiceClient bean = context.getBean(HelloWorldServiceClient.class); bean.showMessage();
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(AppRunner.class); OrderServiceClient bean = context.getBean(OrderServiceClient.class); bean.showPendingOrderDetails(); }