Spring Boot — Tomcat Port Number | Code Factory
1 min readApr 8, 2020
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 = 8081In the application.yml file, you can find as follows
server:
port: 8081Random Port
In the application.properties file, we can set random port number for the property server.port
server.port = 0In the application.yml file, you can find as follows
server:
port: 0Note − If the server.port number is 0 while starting the Spring Boot application, Tomcat uses the random port number.