一、修改端口号
spring-boot 默认的端口号是8080,如需修改。
1、新建一个src/main/resources 文件夹
2、在这个文件夹下新建一个application.propertise 文件
3、在这个文件里写 server.port = 80
4、注意
要使用spring-boot:run启动。
配置文件名称必须为application.properties,否则不起作用
如果启动了热启动,那么将实时起作用;原来的端口号将不再起作用。
application.properties文件放在src/main/resources 或 src/main/java 下都可以,并且都会热部署。
二、修改context-path
springboot 默认的context-path 是 /
平时写一个controller ,访问路径是http://127.0.0.1/xxx;
在application.properties 里配置 server.context-path = /sto,访问路径就变为了http://127.0.0.1/sto/xxx
三、其它配置说明
会话超时时间:
server.session-timeout = session timeout in seconds
tomcat 最大线程数:
server.tomcat.max-threads = number of threads in protocol handler
编码:
server.tomcat.uri-encoding = UTF-8