List<String> list = linkPersonVoList.stream()
.collect(Collectors.groupingBy(linkPersonVo -> linkPersonVo.getName(),Collectors.counting()))
.entrySet().stream()
.filter(entry->entry.getValue() > 1)
.map(entry -> entry.getKey())
.collect(Collectors.toList());