Answers for "how to change the port in spring boot"

7

change spring port

server.port=8081
Posted by: Guest on February-17-2020
1

port already in use spring boot

> netstat -ano | findstr *<port used>*

  TCP    0.0.0.0:*<port used>*  0.0.0.0:0              LISTENING       *<pid>*
  TCP    [::]:*<port used>*     [::]:0                 LISTENING       *<pid>*

> taskkill /F /PID *<pid>*
SUCCESS: The process with PID *<pid>* has been terminated.
Posted by: Guest on August-26-2020

Code answers related to "how to change the port in spring boot"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language