We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
result.stream().forEach((obj) -> { field.setAccessible(true); Object o = null;
try { o = field.get(obj); if (o != null && !ids.contains(o)) { ids.add(o.toString()); sb.append(o.toString()).append(","); } } catch (IllegalAccessException var6) { log.error("数据属性加工失败:" + field, var6); throw new RuntimeException("数据属性加工失败:" + field, var6); } }); args = sb.substring(0, sb.length() - 1);
如果sb为空,报如下异常StringIndexOutOfBoundsException: String index out of range: -1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
result.stream().forEach((obj) -> {
field.setAccessible(true);
Object o = null;
如果sb为空,报如下异常StringIndexOutOfBoundsException: String index out of range: -1
The text was updated successfully, but these errors were encountered: