spring_reference/IX. ‘How-to’ guides/64.2. Change the HTTP port.md

895 B
Raw Blame History

64.2. 改变HTTP端口

在一个单独的应用中主HTTP端口默认为8080但可以使用server.port设置比如在application.properties中或作为一个系统属性。由于Environment值的宽松绑定,你也可以使用SERVER_PORT比如作为一个OS环境变

为了完全关闭HTTP端点但仍创建一个WebApplicationContext你可以设置server.port=-1(测试时可能有用)。

想获取更多详情可查看'Spring Boot特性'章节的Section 26.3.3, “Customizing embedded servlet containers”,或ServerProperties源码。