Fisco bcos 区块链-分布式部署 前置条件:mysql配置成功。 节点搭建 cat > ipconf << EOF 127.0.0.1:1 agencyA 1 127.0.0.1:1 agencyB 1,2 127.0.0.1:1 agencyC 2 EOF bash build_chain ...
分类:
其他好文 时间:
2021-02-01 11:38:11
阅读次数:
0
logging是一个python的自带模块,用来记录日志信息,大白话就是把你print()的东西输出到控制台console或者文件file 这是一个非常重要的模块,在我们眼中仅次于os和sys,下面将我自己封装的logging代码贴出来 import logging def logger_handl ...
分类:
编程语言 时间:
2021-01-29 12:09:22
阅读次数:
0
继上一篇的授权码授权模式,这篇会继续实现混合授权模式 首先修改Config.cs 添加Client new Client { ClientId = "hybrid_client", ClientName = "hybrid Auth", ClientSecrets = { new Secret("h ...
分类:
其他好文 时间:
2021-01-29 11:49:14
阅读次数:
0
1、依赖 <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>3.4.0</version> </dependency> 2、JWT工具类生成 import com.auth0.jw ...
分类:
编程语言 时间:
2021-01-27 13:14:05
阅读次数:
0
class EventBus { constructor(){} handlerBus={} //注册 $on(eventName,handler){ if(!this.handlerBus.hasOwnProperty(eventName)){ this.handlerBus[eventName] ...
分类:
Web程序 时间:
2021-01-22 12:01:16
阅读次数:
0
Project ERROR: Cannot run target compiler '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++'. Output: Ma ...
分类:
移动开发 时间:
2021-01-20 11:51:37
阅读次数:
0
Sentinel上下文创建及执行,入口示例代码: public static void fun() { Entry entry = null; try { entry = SphU.entry(SOURCE_KEY); } catch (BlockException e1) { } finally ...
分类:
其他好文 时间:
2021-01-20 11:51:13
阅读次数:
0
第五章 行为型模式 1. Chain of Responsibility(责任链) -- 对象行为型模式 意图: 十多个对象都有机会处理请求,从而避免请求的发送者和接收者之间的耦合关系; 使用; 从第一个对象开始,链中收到求的对象要么亲自处理,要么转发下一位候选者,知道请求被处理或者到链的终点未处理 ...
分类:
其他好文 时间:
2021-01-19 11:40:10
阅读次数:
0
data: { datas: { a: 77, b: 86 } } 使用deep:true深层次监听 'datas':{ handler:function(newVal){ console.log(this.datas); }, deep:true } 监听某一个具体的属性 'datas.a':{ ...
分类:
其他好文 时间:
2021-01-18 10:45:24
阅读次数:
0
from: https://www.cnblogs.com/general001/articles/3581303.html LZMA (Lempel-Ziv-Markov chain-Algorithm) 基于著名的LZ77压缩算法改进的压缩/解压工具,特点:高压缩率,高解压速度,低内存消耗,lz ...
分类:
其他好文 时间:
2021-01-16 12:02:39
阅读次数:
0