BindableBean bindable = new BindableBean();
bindable.setNestedBindableBean(nested);
bindable.setIntegerValue("5");
BindAnnotationReader bindablesReader = new BindAnnotationReader();
BindConvertInfo bindConvertInfo = bindablesReader.readBindables(bindable);
Map<String, BindHandler> map = bindConvertInfo.getBindMap();
assert map.size() == 2;
BindHandler b = map.get("integerValue");