Java -Liste wählen Sie Feld
import java.util.stream.Collectors;
List<String> field1List = entities.stream().map(YourEntity::getField1).collect(Collectors.toList());
Fatih KARAÜZÜM