-
Notifications
You must be signed in to change notification settings - Fork 26.5k
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
fix default setting #5066
Closed
Closed
fix default setting #5066
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…4021) * constants step2 * change interface
* constants step3-remoting * remove import * modify
* optimize constant naming style * optimize some code style Signed-off-by: jimin.jm <slievrly@163.com>
Signed-off-by: jimin.jm <slievrly@163.com>
* [DUBBO-3137]: start to use org.apache.dubbo.common.constants.CommonConstants * remove useless imports * remove useless imports * remove unused imports * remove unused imports * remove unused imports * remove unused imports * remove unused imports * use static import
* constants step3 rpc * remove useless import * remove useless import * remove useless import * remove useless import
* Create constants for 'hash.names' and 'hash.arguments' (#3744) * Merge dubbo-rpc-xmlrpc (#3764) * Removing .gitignore * Rename package name * Add Apache License * Rename groupID name and url * Update dubbo-rpc-xmlrpc version and add as a dependency in dubbo-all * Replace package for "org.apache.dubbo.xml" and rename "com.alibaba.*" to "org.apache.dubbo" * Fix the name of artifactID * Remove unused files and add dubbo-rpc-xml as a module in dubbo-rpc * Remove authors and delete files that are duplicate in the main repo have one * Fix the name of package and remove unnecessary space * Remove unnecessary space * Remove authors * Fix imports and remove authors from pom * Update groupID and the name of package * Remove unused tags * Add dubbo-rpc-xml as a dependency on dubbo-bom * Fix package names * Call JettyHttpBinder from remoting module to avoid duplicated files * Fix unit tests and upgrade to JUnit 5 * Call JettyHttpBinder from remoting module to avoid duplicated files * Add external dependencies on dubbo-dependencies-bom
* [DUBBO-3137]: step3, start to use ConfigConstants, FilterConstants, and remove Constants.java completely. * remove Constants imports
* [DUBBO-3137]: step4 - remove MonitorConstants * remove unused import
… dubbo-remoting-api (#4077) * [DUBBO-3137]: step4 - move more constants from RemotingConstants into dubbo-remoting-api * optimize imports
* clear unused import
* Simplify some code where feasible * Remove unused import
* fix convertMethodConfig2AsyncInfo spelling error * simplified code * refact: simplified code * feat: add unittest of JavaBeanSerializeUtilTest class * feat: add unittest of JavaBeanSerializeUtilTest class * refact: simplify and Beautify the code * feat: add unittest of JavaBeanSerializeUtilTest class * refact: simplify code * refact: simplify code * refact: simplify code * refact: simplify code * refact: simplify and beautify code
* add Apollo config center mock test Signed-off-by: slievrly <slievrly@163.com> * add license header Signed-off-by: slievrly <slievrly@163.com> * optimize Signed-off-by: slievrly <slievrly@163.com> * move apollo-mockserver dependency to apollo module Signed-off-by: slievrly <slievrly@163.com>
* nacos-registry:serviceName split error * nacos-registry::remove depency org.apache.commons.lang3
* dubbo zookeeper registry too slow * dubbo zookeeper registry too slow I find a branch missing delete the persist node * dubbo zookeeper registry too slow I find a branch missing delete the persist node * dubbo zookeeper registry too slow change to dubbo concurrenthashset
…iders number become 0 when using nacos registry (#4802) * make RegistryDirectory can refresh the invokers when providers number become 0 when using nacos registry * make RegistryDirectory can refresh the invokers when providers number become 0 when using nacos registry * make RegistryDirectory can refresh the invokers when providers number become 0 when using nacos registry
only effective for hessian2 serialization scenario.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1、我需要通过AnnotatedMethodElement 获取里面的注解信息及引用对象,但是这个类是私有的, 将他改成public,比较合理.
2、还有 DubboConfigBindingBeanPostProcessor 将这两个属性值固定死了, 无论外部bean怎么配置都会在这里改变,所以将这两个属性改成局部变量比较合理
private boolean ignoreUnknownFields = true;
private boolean ignoreInvalidFields = true;
这是2.7.x版本,请看2.6.x 版本:#4955 (comment)