netstat -ano | findstr :8080 # (the port number)
This should give you the process id to kill. Then you run:
taskkill /F /PID 12017 # (or whatever the process ID is)