-
Notifications
You must be signed in to change notification settings - Fork 56
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
Modify CompositeRequestDataValueProcessor #167
Comments
I think it is not a fundamental solution. How do your think? |
I think that RequestDataValueProcessor return HashMap(only one item) in this case. And add to result(LikedHashMap) in order. cf.CompositeRequestDataValueProcessor
cf.spring-mvc.xml
|
The order of the result from Though the field name is "reversed processors", the following process ignores the order: Map<String, String> result = new HashMap<String, String>();
for (RequestDataValueProcessor processor : reversedProcessors) {
Map<String, String> map = processor.getExtraHiddenFields(request);
if (map != null) {
result.putAll(map);
}
} So |
…eRequestDataValueProcessor Changed HashMap to LinkedHashMap #167
…eRequestDataValueProcessor Changed HashMap to LinkedHashMap #167
Change HashMap to LinkedHashMap.
Because tags order changed between java7 and java8.
The text was updated successfully, but these errors were encountered: