まず検索して:
lsof -i :3000
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
java 99820 oscarvenus 127u IPv6 0x2597df693e956d2f 0t0 TCP *:http-alt (LISTEN)
プロセスを停止:
kill -9 99820
lsof -i :3000
kill -9 99820
targetLongList = sourceLongList.stream() .filter(l -> l > 100) .collect(Collectors.toList());
targetLongList =
sourceLongList.stream().
filter(l -> l > 100).
collect(Collectors.toCollection(ArrayList::new))