上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 244 下一页
摘要: http://nginx.org/en/docs/http/ngx_http_upstream_module.html Example ConfigurationDirectives upstream server zone state hash ip_hash keepalive keepaliv 阅读全文
posted @ 2021-08-06 21:22 疯子110 阅读(84) 评论(0) 推荐(0) 编辑
摘要: nginx作为反向代理服务器,后端RS有多台服务器,上层通过一定机制保证容错和负载均衡。 nginx的重试机制就是容错的一种 官方链接:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_next_upstream proxy 阅读全文
posted @ 2021-08-06 09:09 疯子110 阅读(1288) 评论(0) 推荐(0) 编辑
摘要: http://nginx.org/en/docs/http/ngx_http_proxy_module.html#example Example ConfigurationDirectives proxy_bind proxy_buffer_size proxy_buffering proxy_bu 阅读全文
posted @ 2021-08-06 09:07 疯子110 阅读(90) 评论(0) 推荐(0) 编辑
摘要: Nginx作为负载均衡服务_backup状态演示1、upstream举例upstream backend { server backend1.example.com weight=5; server 127.0.0.1:8080 max_fails=3 fail_timeout=30s; serve 阅读全文
posted @ 2021-08-06 08:55 疯子110 阅读(1398) 评论(0) 推荐(1) 编辑
摘要: nginx backup 功能已实现,404 页面不转到备机, 502 503 504 到备机。 配置如下 upstream server_tomcat1 { server 127.0.0.1:9001 weight=1 max_fails=5 fail_timeout=60s; server 12 阅读全文
posted @ 2021-08-06 08:52 疯子110 阅读(654) 评论(0) 推荐(0) 编辑
摘要: 设置Tomcat端口号和连接数等 使用application.properties配置文件有一些参数无法设置,所以推荐创建一个类文件来配置,如下: package com.qipai.springbean; import org.apache.catalina.connector.Connector 阅读全文
posted @ 2021-08-04 15:41 疯子110 阅读(602) 评论(0) 推荐(0) 编辑
摘要: pringBoot2 and Tomcat Connection TimeoutFirst of all, in my friends’ project, they did not use last spring boot web-flux.So we have application.proper 阅读全文
posted @ 2021-08-04 15:35 疯子110 阅读(1870) 评论(0) 推荐(0) 编辑
摘要: 免费天气、温度、aqi、风向风力。可以跨域访问。 http://wthrcdn.etouch.cn/weather_mini?citykey=101070101 // 城市代码 直辖市 "北京","上海","天津","重庆" "101010100","101020100","101030100"," 阅读全文
posted @ 2021-08-03 15:08 疯子110 阅读(325) 评论(0) 推荐(0) 编辑
摘要: pringBoot中获取ApplicationContext的三种方式ApplicationContext是什么? 简单来说就是Spring中的容器,可以用来获取容器中的各种bean组件,注册监听事件,加载资源文件等功能。 Application Context获取的几种方式 1 直接使用Autow 阅读全文
posted @ 2021-07-29 16:42 疯子110 阅读(1438) 评论(0) 推荐(0) 编辑
摘要: 关于分布式任务调度平台XXL-JOB,作者 许雪里 在其发布的中文教程中已经介绍的很清楚了,这里就不做过多的介绍了。按照文档搭建xxl-job,做此纪录。 1、源码下载地址 GitHub:https://github.com/xuxueli/xxl-job 码云:https://gitee.com/ 阅读全文
posted @ 2021-07-29 16:33 疯子110 阅读(3214) 评论(1) 推荐(4) 编辑
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 244 下一页