1.修改Tomcat的端口号,默认为8080
在application.properties配置文件中添加
server.port=想要修改的端口号
2.修改context-path,默认为/
server.context-path=/springboot
3.其他配置
#server.port=8080
#server.address= # bind to a specific NIC
#server.session-timeout= # session timeout in seconds
#the context path, defaults to '/'
#server.context-path=/spring-boot
#server.servlet-path= # the servlet path, defaults to '/'
#server.tomcat.access-log-pattern= # log pattern of the access log
#server.tomcat.access-log-enabled=false # is access logging enabled
#server.tomcat.protocol-header=x-forwarded-proto # ssl forward headers
#server.tomcat.remote-ip-header=x-forwarded-for
#server.tomcat.basedir=/tmp # base dir (usually not needed, defaults to tmp)
#server.tomcat.background-processor-delay=30; # in seconds
#server.tomcat.max-threads = 0 # number of threads in protocol handler
#server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding
本文详细介绍了如何在Spring Boot应用中修改Tomcat的端口和context-path,并提供了其他多种服务器配置选项,如会话超时设置、日志模式等。

被折叠的 条评论
为什么被折叠?



