我有以下Java代码
┌─[ricardoramos]@[falcon]:~/Projetos Eclipse/LOCAL-ClienteREST
└──> $ foreman start
19:21:45 web.1 | started with pid 19740
19:21:45 web.1 | 2015-07-01 19:21:45.879:INFO:omjr.Runner:Runner
19:21:45 web.1 | 2015-07-01 19:21:45.880:WARN:omjr.Runner:No tx manager found
19:21:45 web.1 | 2015-07-01 19:21:45.917:INFO:omjr.Runner:Deploying file:/home/ricardoramos/Projetos%20Eclipse/LOCAL-ClienteREST/target/ClienteREST-0.0.1-SNAPSHOT.war @ /
19:21:45 web.1 | 2015-07-01 19:21:45.943:INFO:oejs.Server:jetty-8.y.z-SNAPSHOT
19:21:46 web.1 | 2015-07-01 19:21:46.495:INFO:oejpw.PlusConfiguration:No Transaction manager found - if your webapp requires one, please configure one.
19:21:48 web.1 | 2015-07-01 19:21:48.167:INFO::main: Logging initialized @2438ms
19:21:48 web.1 | 2015-07-01 19:21:48.517:WARN:oejsh.RequestLogHandler:!RequestLog
19:21:48 web.1 | 2015-07-01 19:21:48.542:INFO:oejs.AbstractConnector:Started SelectChannelConnector@0.0.0.0:8082
使用以下命令时,为什么不显示任何内容:
List<String> sorted = map.entrySet().stream()
.sorted(reverseOrder(comparing(Entry::getValue)))
.map(Entry::getKey)
.collect(toList());
怎么了?