AlbumenJ commented on issue #10712:
URL: https://github.com/apache/dubbo/issues/10712#issuecomment-1287663368
> 有类似通配符匹配某些方法不可重试的配置吗? 类似 insert*,update*
可以在 ConfigPostProcessor 里面自己匹配的
```java
@SPI(scope = ExtensionScope.MODULE)
public interface ConfigPostProcessor {
default void postProcessReferConfig(ReferenceConfig referenceConfig) {
// 直接读取 referenceConfig 并修改就行
}
default void postProcessServiceConfig(ServiceConfig serviceConfig) {
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]