博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot Server 配置
阅读量:6105 次
发布时间:2019-06-20

本文共 796 字,大约阅读时间需要 2 分钟。

  hot3.png

如果修改spring boot 默认端口号及上下文

可以通过在application.properties中增加以下内容进行配置:

###########################################################server#########################################################spring boot 默认端口号为8080,可以通过server.port进行修改server.port=8081 #spring boot 默认上下文为/,可以通过server.context-path进行修改server.context-path=/spring-boot

 

通过application.properties还可以配置server的其它信息

#session超时时间#server.session-timeout= # session timeout in seconds#servlet访问路径#server.servlet-path= # the servlet path, defaults to '/'#Tomcat的最大线程数#server.tomcat.max-threads = 0 # number of threads in protocol handler#Tomcat url的编码格式 #server.tomcat.uri-encoding = UTF-8 # character encoding to use for URL decoding

 

另可以参观以下贴子了解其它配置信息:

http://www.cnblogs.com/softidea/p/6068128.html

转载于:https://my.oschina.net/sdlvzg/blog/1162443

你可能感兴趣的文章
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>
深入浅出NodeJS——数据通信,NET模块运行机制
查看>>
onInterceptTouchEvent和onTouchEvent调用时序
查看>>
android防止内存溢出浅析
查看>>
4.3.3版本之引擎bug
查看>>
SQL Server表分区详解
查看>>