博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringBoot 优化内嵌的Tomcat
阅读量:4954 次
发布时间:2019-06-12

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

在通过SpringBoot调用其它服务时,报错

org.springframework.web.client.ResourceAccessException: I/O error on POST request for "http://18.16.200.110:8083/app/user/login": Read timed out; nested exception is java.net.SocketTimeoutException: Read timed out    at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:633)    at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:580)    at org.springframework.web.client.RestTemplate.postForEntity(RestTemplate.java:407)

有两种解决方案

1.直接在application.properties中添加:

server.connection-timeout=3000

2.直接在SpringBoot启动类中添加,参考下面的链接

 

tomcat配置

 

转载于:https://www.cnblogs.com/hongdada/p/9198857.html

你可能感兴趣的文章
20180104-高级特性-Slice
查看>>
6个SQL Server 2005性能优化工具介绍
查看>>
nginx启动、关闭命令、重启nginx报错open() "/var/run/nginx/nginx.pid" failed
查看>>
day14 Python 内置函数、匿名函数和递归函数
查看>>
BZOJ 3097 Hash Killer I
查看>>
UINavigationController的视图层理关系
查看>>
html阴影效果怎么做,css 内阴影怎么做
查看>>
宏观经济
查看>>
译:面试投行的20个Java问题
查看>>
综合练习:词频统计
查看>>
BZOJ1026: [SCOI2009]windy数
查看>>
ASP.NET应用程序和ASP.NET网站所共有的文件: App_Browsers 等
查看>>
ASP.NET杂货店实战视频 VS2010+SQL2008 三层架构设计开发讲解
查看>>
样板操作数
查看>>
64位UBUNTU下安装adobe reader后无法启动
查看>>
动态缓存技术之CSI,SSI,ESI
查看>>
mac 上将.pem文件转为.pub文件
查看>>
整理下心情
查看>>
iTextSharp带中文转换出来的PDF文档显示乱码
查看>>
阶乘因式分解(一)
查看>>