如何配置端口

寻找如何在Spring引导应用程序中配置端口:

@Controller
@EnableAutoConfiguration
public class SampleController {

    @RequestMapping("/")
    @ResponseBody
    String home() {
        return "Hello World!";
    }

    public static void main(String[] args) throws Exception {
        SpringApplication.run(SampleController.class, args);
    }
}

这是所有的来源:)


正如文档中所述,使用命令行选项将server.port设置为系统属性,以将jvm --server.port=8090或在/src/main/resources/添加application.properties

server.port = 8090

随机端口使用

server.port=0

在Spring Boot应用程序中,有两种主要方法可以更改Embedded Tomcat中的端口。

修改application.properties

首先,您可以尝试/ resources文件夹中的application.properties文件:

application.properties文件

修改VM选项

第二种方法,如果你想避免修改任何文件并检查你只需要在你本地的东西,你可以使用vm arg:

转到运行 - >编辑配置 - >虚拟机选项

-Dserver.port=8090

用vm arg改变端口

另外,如果您需要更多信息,您可以在这里查看以下博文:更改Spring Boot应用程序中的端口


另外,您可以通过编程来配置端口

@Configuration
public class ServletConfig {
    @Bean
    public EmbeddedServletContainerCustomizer containerCustomizer() {
        return (container -> {
            container.setPort(8012);
        });
    }
}
链接地址: http://www.djcxy.com/p/8571.html

上一篇: how to configure port

下一篇: Reading JSON from a file?