gpt4 book ai didi

spring - Spring RESTful Web 服务的端口绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 23:52:35 26 4
gpt4 key购买 nike

我用过Building a RESTful Web Service为我的目的构建 WebService 的教程。这很容易,但现在我正在努力配置应该绑定(bind) WebService 的端口。没有config.xml或在此项目中配置的任何内容。谁能给我一个关于如何配置 WebService 端口的提示?

因为这些细节可能会有所帮助。我正在使用以下代码启动服务器,其中包含 @EnableAutoConfiguration标签。配置由 Spring Boot 完成.

@ComponentScan
@EnableAutoConfiguration
public class ServerStarter{

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

最佳答案

要配置端口,您可以通过在“src/main/resources”下的“application.properties”文件中写入以下内容来设置 server.port 和 management.port 属性:

server.port = 9000
management.port = 9001

同样如果需要指定管理地址:
management.address = 127.0.0.1

您可以为服务器和管理服务器设置更多属性。参见 spring-boot 的文档: http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/

关于spring - Spring RESTful Web 服务的端口绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20520589/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com