jdk1.8lambda表达式用法

List<Long> contentIds = contents.stream().map(Content::getContentId).collect(Collectors.toList());


或者可以:
List<Long> contentIds = contents.stream().map(model->{
return model.getContentid();
}).collect(Collectors.toList());