没有,但自己实现也很方便
@Test
public void test_ioc_inject() throws Exception {
Object obj = new Object();
for (Field field : obj.getClass().getDeclaredFields()) {
Inject inject = field.getAnnotation(Inject.class);
if (inject != null)
field.set(obj, ioc.get(field.getType(), field.getName()));
}
}