Spring Boot — Tomcat Port Number | Code Factory

Reference Link : Link

Donate : Link

Spring Boot lets you to run the same application more than once on a different port number.
Note : Default port number 8080.

Custom Port

In the application.properties file, we can set custom port number for the property server.port

server.port = 8081

In the application.yml file, you can find as follows

server: 
port: 8081

Random Port

In the application.properties file, we can set random port number for the property server.port

server.port = 0

In the application.yml file, you can find as follows

server: 
port: 0

Note − If the server.port number is 0 while starting the Spring Boot application, Tomcat uses the random port number.

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store