我目前正在尝试使用Spring Boot创建一个Web应用程序。我需要将应用程序托管到localhost:8081。如何更改端口?
实际上,您想要更改,server.port并且可以按照http://docs.spring.io/spring- boot/docs/current/reference/htmlsingle/#boot-features-external- config中所述的许多不同方式进行更改
server.port
例子:
java -Dserver.port = $ PORT -jar target / demo-0.0.1-SNAPSHOT.jar
以及更多