feign: httpclient: # feign最大连接数 max-connections: 200 # feign单个路径的最大连接数 max-connections-per-route: 50 okhttp: # 让feign使用Apache okhttp做请求,而不是默认的urlConne ...
分类:
编程语言 时间:
2020-06-28 09:39:14
阅读次数:
81
1.app.py from flask import Flask,render_template import sqlite3 app = Flask(__name__) @app.route('/') def index(): return render_template("index.html" ...
分类:
Web程序 时间:
2020-06-27 19:57:27
阅读次数:
71
通过 vi 查看CentOS7最小化安装默认网卡设备配置信息, 如下: [root@localhost ~]# vi /etc/sysconfig/network-scripts/ifcfg-ens33 TYPE=Ethernet # 网卡类型:为以太网 PROXY_METHOD=none # 代理 ...
分类:
其他好文 时间:
2020-06-27 11:52:56
阅读次数:
75
一、背景介绍BGP是一种多用于运营商之间的网络协议类型,他与IGP不同的地方(主要指IGP中的ospf协议)在于它是一种距离矢量型的协议,所以路由器之间传递的为路由表,而运行商选择BGP协议的原因在于IGP协议无法容纳公网上数量巨大的路由条目二、BGP的工作模式BGP作为一种应用层协议,工作在7层,类似于ospf协议,运行BGP协议的路由器之间需要建立对等体关系。在ospf中,只有直连路由器之间才
分类:
其他好文 时间:
2020-06-27 09:59:11
阅读次数:
62
//1.获取秒杀商品详情接口 [Route("api/GetProduct")] [HttpGet] public ProductInfo GetProduct(int productId = 1) { ProductInfo info = new ProductInfo(); info.PId = ...
1.在路由处设置参数name Route::get('/index/{name}','Controller@index'); 2.接收name参数,使用view调用显示html页面 <?php namespace App\Http\Controllers; use http\Env\Request; ...
分类:
其他好文 时间:
2020-06-26 16:49:29
阅读次数:
73
Route::prefix('admin')->group(function (){ Route::get('/test1','Admin\AdminController@test1'); Route::get('/test2','Admin\AdminController@test2'); }); ...
分类:
其他好文 时间:
2020-06-26 14:46:03
阅读次数:
58
1.首先定义两个路由 Route::get('/{name}','Conterller@index'); Route::get('/routes','Conterller@routes'); 2.创建中间件php artisan make:middleware checkName 创建中间件目录如下 ...
分类:
其他好文 时间:
2020-06-26 12:41:12
阅读次数:
72
一、简介 1、vue-router是vue.js官方的路由管理器,它和vue.js的核心深度集成,让构建单页面应用变得易如反掌。 2、官方文档:https://router.vuejs.org/zh/。 3、下载安装:npm i vue-router -S(npm install vue-route ...
分类:
其他好文 时间:
2020-06-26 10:51:12
阅读次数:
55
环境搭建 python 安装:建议使用python3.7 pycharm安装 requests安装 :pip3 install requests requests 基本使用 usage: >>> import requests >>> r = requests.get('https://www.py ...
分类:
编程语言 时间:
2020-06-25 10:22:47
阅读次数:
108