another java framework
Ajaf implements dependency injection with custom annotations.
@Injectable
class FooServiceImpl implements FooService {
}
@Injectable
class BarServiceImpl implements BarService {
@Autoinject
private FooService foo;
}
Continue ...