标签: tomcat spring-boot
我在localhost上的Spring Boot中有应用程序,url是:127.0.0.1:8080。是否可以省略端口?我的意思是我想写127.0.0.1并获得这个网站。
127.0.0.1:8080
127.0.0.1
答案 0 :(得分:1)
在档案application.properties中,设置
application.properties
server.port=80
然后您可以访问以下网址:http://127.0.0.1
http://127.0.0.1
参考: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready-customizing-management-server-port