批量杀死java进程

jps | awk '{print $1}' | xargs kill -9

或

sudo pkill -f "java"

批量杀死nodejs进程

sudo pkill -f "node"

验证:
pgrep -f "node"