使用Commons Configuration可以很好的管理我们的配置文件的读写。 官网:http://commons.apache.org/proper/commons-configuration/ 需要使用到的包有:commons-collections、commons-configuratio ...
分类:
Web程序 时间:
2020-10-18 16:48:30
阅读次数:
35
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys from selenium.webdriver.sup ...
分类:
其他好文 时间:
2020-10-18 10:16:52
阅读次数:
22
微服务的本质是一系列分布式REST API的集合,因此,各服务间最常用的通信协议为HTTP协议。诚然,通过传统的写URL进行调用的方式当然可以,但未免不够优雅。而通过使用Feign,可以做到像调用本地服务一样优雅地调用远程服务。 开发目标是在Zuul中实现一个基础的过滤器,对所有经过Zuul的请求进 ...
分类:
其他好文 时间:
2020-10-16 10:35:40
阅读次数:
22
1、使用 org.apache.commons.lang.StringUtils 中的 join 函数。 StringUtils.join(array, ","); 2、使用 Google Guava 中的 com.google.common.base.Joiner 类。 Joiner.on(',' ...
分类:
编程语言 时间:
2020-10-14 20:31:17
阅读次数:
56
vue获取微博授权URL 1.在Vue页面加载时动态发送请求获取微博授 权url 1.1 在 components\common\lab_header.vue 中写oauth动态获取微 博授权URL // 获取微博登录地址 oauth() { // 从后端获取 微博登录地址 oauth_post() ...
分类:
Web程序 时间:
2020-10-13 17:09:10
阅读次数:
20
from bs4 import BeautifulSoup import bs4, csv import time from selenium import webdriver from selenium.common.exceptions import TimeoutException from ...
分类:
Web程序 时间:
2020-10-10 17:43:05
阅读次数:
26
The 15-point DevOps Checklist See the original article DevOps is a culture that requires some practices and a new vision, its common goal is unifying ...
分类:
其他好文 时间:
2020-10-10 17:05:36
阅读次数:
24
1.在Vue页面加载时动态发送请求获取微博授权url 1.1 在components\common\lab_header.vue中写oauth动态获取微 博授权URL // 获取微博登录地址 oquth(){ oauth_post().then((resp) => { console.log(res ...
分类:
Web程序 时间:
2020-10-09 21:25:35
阅读次数:
31
前端函数如下,js方法代码无需更改,前端代码逻辑在components\common\lab_header.vue 只需要修改components\axios_api\http.js中调用的后端地址 // axios.defaults.baseURL = "http://127.0.0.1:8000 ...
分类:
其他好文 时间:
2020-10-08 19:48:54
阅读次数:
45