接口 DubboConfigBeanCustomizer
-
- 所有超级接口:
org.springframework.core.Ordered
public interface DubboConfigBeanCustomizer extends org.springframework.core.OrderedThe Bean customizer forDubbo Config. Generally, The subclass will be registered as a Spring Bean that is used tocustomizeDubbo Configbean afterits binding.If There are multiple
DubboConfigBeanCustomizerbeans in the Springcontext, they are executed orderly, thus the subclass should be aware to implement theOrdered.getOrder()method.- 从以下版本开始:
- 2.6.6
- 另请参阅:
DubboConfigBinder.bind(String, AbstractConfig),DubboConfigBindingBeanPostProcessor
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 voidcustomize(String beanName, AbstractConfig dubboConfigBean)CustomizeDubbo Config Bean
-
-
-
方法详细资料
-
customize
void customize(String beanName, AbstractConfig dubboConfigBean)
CustomizeDubbo Config Bean- 参数:
beanName- the name ofDubbo Config BeandubboConfigBean- the instance ofDubbo Config Bean
-
-