public <T> T get(Class<T> type) throws IocException {
InjectName inm = type.getAnnotation(InjectName.class);
if (null != inm && (!Strings.isBlank(inm.value())))
return get(type, inm.value());
IocBean iocBean = type.getAnnotation(IocBean.class);
if (iocBean != null && (!Strings.isBlank(iocBean.name())))
return get(type, iocBean.name());
return get(type, Strings.lowerFirst(type.getSimpleName()));
}