我正在尝试在heroku上部署我的服务器.我收到了这个错误:
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
这是我的Java类:
package introsde.document.endpoint; import javax.xml.ws.Endpoint; import introsde.assignment.soap.PeopleImpl; public class PeoplePublisher { public static String SERVER_URL = "http://localhost"; public static String PORT = "6902"; public static String BASE_URL = "/ws/people"; public static String getEndpointURL() { return SERVER_URL+":"+PORT+BASE_URL; } public static void main(String[] args) { String endpointUrl = getEndpointURL(); System.out.println("Starting People Service..."); System.out.println("--> Published at = "+endpointUrl); Endpoint.publish(endpointUrl, new PeopleImpl()); } }
我怎么解决这个问题?
谢谢
尝试创建一个最小的spring-boot应用程序时遇到了同样的问题.我已经将heroku的java-getting-started实现与我的比较,并找到了这个很好的修复.只需将其添加到src/main/resources/application.properties即可
server.port=${PORT:5000}
我在端口绑定方面遇到了同样的问题。然后,我找到了这篇很棒的文章,在其中我了解了在Heroku上进行部署时实际上一切工作的原理。阅读后,我设法在2分钟内解决了我的问题。该链接已失效,但请在此处找到已存档的链接。