I am a newbie in cmd, so please allow me to ask a stupid question: How can we stop a running java process through windows cmd?
For example, if we start jetty(a mini web server) with the following cmd:
start javaw -jar start.jar
How do we find the process and stop it later?
Obviously the following cmd does not work:
stop javaw -jar start.jar