@Override
public String echo(String s) {
log.info("-----> In test()");
log.info("-----> Found BeanWithSimpleInjected, calling echo(\"Test\")");
final BeanWithSimpleInjected bean = LookupService.getBean();
s = bean.echo(s);
if(bean.getSimple() == null) {
throw new RuntimeException("Injection not complete");
}
log.info("-----> echo returned " + s);
return s;
}