Genesis

  • 首页

  • 关于

  • 标签

  • 分类

  • 归档

  • 搜索

Proxyee

发表于 2019-01-07 | 更新于 2019-05-21 | 分类于 tools

Proxyee 简介

阅读全文 »

java httpclient 跳过SSL证书验证的GET请求 工具类

发表于 2018-12-11 | 分类于 util

HttpClient工具类

阅读全文 »

Oauth2.0

发表于 2018-11-30 | 更新于 2019-05-21 | 分类于 api



OAuth2.0简介

OAuth 2.0是行业标准的授权协议。OAuth 2.0取代了2006年创建的原始OAuth协议所做的工作.OAuth 2.0专注于客户端开发人员的简单性,同时为Web应用程序,桌面应用程序,移动电话和客厅设备提供特定的授权流程。该规范及其扩展正在IETF OAuth工作组内开发。

阅读全文 »

js自动计算相差天数

发表于 2018-11-23 | 分类于 js

JS自动计算相差天数

阅读全文 »

outline 服务器搭建(AWS)

发表于 2018-10-24 | 更新于 2019-05-21 | 分类于 free

outline 简介

Outline 是一款爱国工具,Jigsaw 开发的项目——Jigsaw 属于 alphabet 旗下,而 alphabet 是 Google 母公司。那么,这是一款 Google 出品工具?

阅读全文 »

查看out实时日志

发表于 2018-10-17 | 更新于 2019-11-12 | 分类于 linux

查看log

1
2
3
4
5
find /opt/ -name logs

cd /opt/Oracle/Middleware/wlserver_10.3/common/nodemanager/servers/public_server1/logs

tail -f public_server1.out

验证sign的API

发表于 2018-10-17 | 分类于 java

验证sign的API

阅读全文 »

遍历取数据库字段值

发表于 2018-09-13 | 更新于 2019-07-03 | 分类于 java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

String department = StringUtil.getString(paramMap.get("deptCode"));
String tencentdeptid = null;
String sql = "select BY3 from usr_api.t_xg_dw where DWDM = ?";
List<Map<String, Object>> SSList = null;
try {
SSList = DbUtil.query(sql, new Object[] { department });
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
if (SSList != null) {
for (Iterator iterators = SSList.iterator(); iterators.hasNext();) {
String GHvalue = null;
Map<String, Object> example = (Map<String, Object>) iterators.next();// 获取当前遍历的元素,指定为Example对象
Iterator entries = example.entrySet().iterator();
while (entries.hasNext()) {
Map.Entry entry = (Map.Entry) entries.next();
Object key = entry.getKey();
Object value = entry.getValue();
if (key.equals("BY3")) {
tencentdeptid = value.toString();
}
}
}
}

idea 2018.2 for mac永久破解激活方法

发表于 2018-09-04 | 更新于 2019-05-21 | 分类于 破解
  1. 下载安装 idea
  2. 下载激活 Jar 包
    链接: https://pan.baidu.com/s/1kVHRLFkqJxcn9cCoztAT-w
    密码: xcyd

    阅读全文 »

接口调用Demo

发表于 2018-08-23 | 更新于 2019-12-18 | 分类于 api

接口调用Demo

阅读全文 »
12345
Steven Liu

Steven Liu

43 日志
18 分类
14 标签
RSS
© 2016 — 2021 Steven Liu