Injector injector = Syringe.createInjector(new MyModule());
MyService myService = injector.getInstance(MyService.class);
myService.doSomething();
ApplicationContext context = new AnnotationConfigApplicationContext(MyConfiguration.class);
MyService myService = context.getBean(MyService.class);
myService.doSomething();