上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 选型 比特币节点有很多实现 bitcoin core:官方节点,c/c++实现,正式网络大多数都是用这个来运行全节点 btcd:golang的实现版本,如果用golang来写一些功能,可以参考这个代码 libbitcoin:c/c++实现,特点是它有较好的工具链 parity-bitcoin:rus 阅读全文
posted @ 2021-05-07 23:43 然然1907 阅读(325) 评论(0) 推荐(0) 编辑
摘要: //error日志速率限制final RateLimiter errorLogLimiter = RateLimiter.create(2); 阅读全文
posted @ 2021-03-03 10:13 然然1907 阅读(510) 评论(0) 推荐(0) 编辑
摘要: 加密通信软件Signal是开源的,安全性很高,号称斯诺登也推荐大家使用。 编译 言归正传,继续说Signal服务端。首先,Signal Server目前的代码是2.92版本,既然有工程文件pom.xml,那就用Maven编译好了。仓库地址是https://github.com/signalapp/S 阅读全文
posted @ 2021-02-23 21:55 然然1907 阅读(1740) 评论(0) 推荐(0) 编辑
摘要: 在调用数据库mapper层之前,增加一个缓存层。 先让实体类实现2个key的返回接口 public interface EntityInterface { Integer getKeyId(); String getKeyName(); } 原调用mapper的改为调用这个类 @Service("C 阅读全文
posted @ 2021-01-22 18:22 然然1907 阅读(115) 评论(0) 推荐(0) 编辑
摘要: import org.springframework.beans.factory.annotation.Value; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Re 阅读全文
posted @ 2020-10-30 10:49 然然1907 阅读(88) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.annotation.JSONField; import com.alibaba.fastjson.annotation.JSONType; import com.alibab 阅读全文
posted @ 2020-10-29 14:05 然然1907 阅读(2732) 评论(0) 推荐(0) 编辑
摘要: package com.tianrang.vcc.controller.filter; import org.springframework.boot.web.servlet.FilterRegistrationBean; import org.springframework.context.ann 阅读全文
posted @ 2020-10-29 14:02 然然1907 阅读(2567) 评论(0) 推荐(0) 编辑
摘要: 1、首先,为啥要知道这个东西呢?因为现在项目基本都是前后端分离,操作的话一般都是返回json串,但是会有这种情况,加入你put一个key和value的时候,如果value是空,那么等你返回给前台的时候,前台就连这个key也拿不到了,就直接省掉了(相当于过滤掉了)加上SerializerFeature 阅读全文
posted @ 2020-10-27 17:22 然然1907 阅读(1042) 评论(0) 推荐(0) 编辑
摘要: SpringBoot打包后无法访问JAR中的路径,所以必须使用resource.getInputStream(), 直接读取文件异常如下: java.io.FileNotFoundException: class path resource [validator-config/battery.xml 阅读全文
posted @ 2020-10-27 16:46 然然1907 阅读(2969) 评论(0) 推荐(0) 编辑
摘要: FiddlerPostllan抓包工具接口测试工具接口测试工具支持自动化测试功能非常强大的接口测试工具SoupUI性能测试自动化测试接口测试工具JmeterLoadrunner接口测试工具接口性能测试《主要)接口自动化测试接口性能测试Java+httpclinet.jar通过java语言编写脚本,实 阅读全文
posted @ 2020-07-07 17:34 然然1907 阅读(143) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页