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
Kazuki Shimizu opened DATACMNS-379 and commented
If specified ","(comma only) in parameter value of sort, occurred the ArrayIndexOutOfBoundsException.
I expected that IllegalArgumentException occurs. Other patterns is occurred IllegalArgumentException.
Affects: 1.6.1
Issue Links:
Backported to: 1.6.3 (Babbage SR2)
1 votes, 1 watchers
The text was updated successfully, but these errors were encountered:
Kazuki Shimizu commented
Maybe, should be modified following in SortHandlerMethodArgumentResolver#parseParameterIntoSort(L.245):
String[] elements = part.split(delimiter);
// number of property is unlimited. String[] elements = part.split(delimiter,-1);
or
// n is limit number of properties. String[] elements = part.split(delimiter,n);
Sorry, something went wrong.
Hi. When is this going to be fixed ? If possible, i hope that fix this issue in ver 1.6.3.
I think this issue is related issue of DATACMNS-408.
odrotbohm
No branches or pull requests
Kazuki Shimizu opened DATACMNS-379 and commented
If specified ","(comma only) in parameter value of sort, occurred the ArrayIndexOutOfBoundsException.
I expected that IllegalArgumentException occurs.
Other patterns is occurred IllegalArgumentException.
Affects: 1.6.1
Issue Links:
Backported to: 1.6.3 (Babbage SR2)
1 votes, 1 watchers
The text was updated successfully, but these errors were encountered: