作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有Spring Boot应用程序
。
它使用 foreach 中的 restTemplate
向其他服务器(副本)发送请求。只有一件事不同 - url 地址。
我认为在这种情况下我应该使用 ExecutorService.newCachedThreadPool()
而不是 foreach。
1。我有一些具有相同逻辑的@ Controllers
。我应该为应用程序使用单个 ExecutorService
还是为每个 @ Controller
使用自己的 ExecutorService
?
2。 ThreadPool
行为 - 如果已达到最大大小,没有空闲线程,并且队列已满,则拒绝策略启动。
我可以检查它还是只是为了处理异常?
最佳答案
如果你有这样的场景
不同 URL 上的应用程序的多个实例
AppInstance1 => localhost:8881
AppInstance2 => localhost:8882
...
AppInstanceN => localhost:888N
现在您可以在一个通用 URL 上定位所有这些应用程序
http://localhost/
您可以使用任何负载均衡器,例如 Nginx
负载均衡器的作用是根据配置的算法将您的请求重定向到不同的服务器
例如。循环赛所以当用户点击http://localhost/user/1
AppInstance1
或 AppInstance2
.. 可以处理此请求
关于java - WEB应用中的缓存线程池性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55284070/
我是一名优秀的程序员,十分优秀!