You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In version 3.0.2, the AbstractMultiCheckedElementTag.java line 291:
tagWriter.appendValue(label.toString());
This line cannot take the advantage of spring conversion service. We should change to the following:
PropertyEditor editor = (value != null ? this.getBindStatus().findEditor(value.getClass()) : null);
String displayString = getDisplayString(label, editor);
tagWriter.appendValue(displayString);