如何在Tomcat上运行基于SpringBoot的Web应用程序而不显示端口号?

时间:2017-05-19 19:13:45

标签: tomcat spring-boot

我在localhost上的Spring Boot中有应用程序,url是:127.0.0.1:8080。是否可以省略端口?我的意思是我想写127.0.0.1并获得这个网站。

1 个答案:

答案 0 :(得分:1)

在档案application.properties中,设置

server.port=80

然后您可以访问以下网址:http://127.0.0.1

参考: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready-customizing-management-server-port