我已经使用Building a RESTful Web Service教程来构建WebService。这很容易,但是现在我正在努力配置应该绑定WebService的端口。此项目中没有任何config.xml或任何要配置的内容。谁能给我有关如何配置WebService的端口的提示吗?

由于这些细节可能会有所帮助。我使用下面的代码(包含@EnableAutoConfiguration标记)启动服务器。配置由Spring Boot完成。

@ComponentScan
@EnableAutoConfiguration
public class ServerStarter{

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

最佳答案

对于快速而肮脏的解决方案,您可以使用命令行选项参数(source):

 --server.port=9000

08-26 11:12