-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Support customer exception #1411
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -37,7 +37,9 @@ | |||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcConfigs.getBooleanValue; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcConfigs.getIntValue; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcConfigs.getListValue; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcConfigs.getStringValue; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcOptions.CONSUMER_EXCEPTIONS; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcOptions.CONSUMER_REJECTED_EXECUTION_POLICY; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcOptions.CONSUMER_ADDRESS_HOLDER; | ||||||||||||||||||||||||||||||
import static com.alipay.sofa.rpc.common.RpcOptions.CONSUMER_ADDRESS_WAIT; | ||||||||||||||||||||||||||||||
|
@@ -225,6 +227,11 @@ public class ConsumerConfig<T> extends AbstractInterfaceConfig<T, ConsumerConfig | |||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||
protected int retries = getIntValue(CONSUMER_RETRIES); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||
* 用户自定义异常集合 | ||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||
protected List<String> customerExceptions = getListValue(CONSUMER_EXCEPTIONS); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||
* 接口下每方法的最大可并行执行请求数,配置-1关闭并发过滤器,等于0表示开启过滤但是不限制 | ||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||
|
@@ -442,6 +449,14 @@ public ConsumerConfig<T> setRetries(int retries) { | |||||||||||||||||||||||||||||
return this; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public List<String> getCustomerExceptions() { | ||||||||||||||||||||||||||||||
return customerExceptions; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
public void setCustomerExceptions(List<String> customerExceptions) { | ||||||||||||||||||||||||||||||
this.customerExceptions = customerExceptions; | ||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||
Comment on lines
+452
to
+458
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The getter and setter methods for - public List<String> getCustomerExceptions() {
+ public List<String> getConsumerExceptions() {
return consumerExceptions;
}
- public void setCustomerExceptions(List<String> customerExceptions) {
+ public void setConsumerExceptions(List<String> consumerExceptions) {
this.consumerExceptions = consumerExceptions;
} Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||
* Gets connection holder. | ||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider renaming
customerExceptions
toconsumerExceptions
to maintain naming consistency with the static importCONSUMER_EXCEPTIONS
.Committable suggestion