|
@@ -95,7 +95,7 @@ public class ExcelDataReader<T> extends AnalysisEventListener<T> {
|
|
|
if (CollectionUtils.isNotEmpty(set)) {
|
|
|
String collect = set.stream()
|
|
|
.map(ConstraintViolation::getMessage)
|
|
|
- .collect(Collectors.joining());
|
|
|
+ .collect(Collectors.joining(", "));
|
|
|
property.setErrorMessage(collect);
|
|
|
}
|
|
|
return property;
|