类 AbstractDubboConfigBinder
- java.lang.Object
-
- com.alibaba.dubbo.config.spring.context.properties.AbstractDubboConfigBinder
-
- 所有已实现的接口:
DubboConfigBinder
,org.springframework.beans.factory.Aware
,org.springframework.context.EnvironmentAware
- 直接已知子类:
DefaultDubboConfigBinder
public abstract class AbstractDubboConfigBinder extends Object implements DubboConfigBinder
AbstractDubboConfigBinder
implementation
-
-
构造器概要
构造器 构造器 说明 AbstractDubboConfigBinder()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 boolean
isIgnoreInvalidFields()
boolean
isIgnoreUnknownFields()
void
setEnvironment(org.springframework.core.env.Environment environment)
void
setIgnoreInvalidFields(boolean ignoreInvalidFields)
Set whether to ignore invalid fields, that is, whether to ignore bind parameters that have corresponding fields in the target object which are not accessible (for example because of null values in the nested path).void
setIgnoreUnknownFields(boolean ignoreUnknownFields)
Set whether to ignore unknown fields, that is, whether to ignore bind parameters that do not have corresponding fields in the target object.-
从接口继承的方法 com.alibaba.dubbo.config.spring.context.properties.DubboConfigBinder
bind
-
-
-
-
方法详细资料
-
isIgnoreUnknownFields
public boolean isIgnoreUnknownFields()
-
setIgnoreUnknownFields
public void setIgnoreUnknownFields(boolean ignoreUnknownFields)
从接口复制的说明:DubboConfigBinder
Set whether to ignore unknown fields, that is, whether to ignore bind parameters that do not have corresponding fields in the target object.Default is "true". Turn this off to enforce that all bind parameters must have a matching field in the target object.
-
isIgnoreInvalidFields
public boolean isIgnoreInvalidFields()
-
setIgnoreInvalidFields
public void setIgnoreInvalidFields(boolean ignoreInvalidFields)
从接口复制的说明:DubboConfigBinder
Set whether to ignore invalid fields, that is, whether to ignore bind parameters that have corresponding fields in the target object which are not accessible (for example because of null values in the nested path).Default is "false".
-
setEnvironment
public final void setEnvironment(org.springframework.core.env.Environment environment)
- 指定者:
setEnvironment
在接口中org.springframework.context.EnvironmentAware
-
-