UI Recorder macaca手机脚本录制介绍:https://www.jianshu.com/p/c9b4914a6946 UI recorder部署在Git hub上:https://github.com/alibaba/uirecorder UI recorder功能详解:https:/ ...
分类:
其他好文 时间:
2020-01-04 18:08:33
阅读次数:
100
需要引包: import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; pom.xml需要引入: <dependency> <groupId>com.alibaba</groupId> <artifac ...
分类:
Web程序 时间:
2020-01-04 10:34:20
阅读次数:
133
平日里,都是看别人的文章,虽开公众号写了不少,但像样的不多。年末了,年终总结也没来得及写,为了输出点像样的东西,立刻就着手这个系列。一个键一个字母的敲,边敲边写,文章还在持续更新中,直至完整。相信通过这个系列的系统练习,能有一个大跨步的提升。 专栏简介(是什么?) 结合SpringCloud、Spr ...
分类:
编程语言 时间:
2020-01-03 12:39:56
阅读次数:
108
字节数组相关操作 序列化工具 (1)alibaba (2)google 提供一个基于gson的工具类,供参考 ...
分类:
编程语言 时间:
2020-01-02 20:39:08
阅读次数:
53
1、遇到的问题 当我们一个方法里面有多个数据库保存操作的时候,中间的数据库操作发生的错误。伪代码如下: public method() { Dao1.save(Person1); Dao1.save(Person2); Dao1.save(Person2); //假如这句发生了错误,前面的两个对象会 ...
分类:
编程语言 时间:
2020-01-02 15:43:40
阅读次数:
72
上代码干货 import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.apache.http.HttpEntity; import org.apache.http.client.metho ...
分类:
其他好文 时间:
2020-01-01 23:29:08
阅读次数:
62
结论:数据库的连接来之不易,要保证利用率(重复利用) 解耦: druid(德鲁伊连接池)号称世界上最好的连接池,且不仅仅是连接池 https://github.com/alibaba/druid ...
分类:
数据库 时间:
2020-01-01 16:41:59
阅读次数:
70
背景 数据库密码直接写在配置中,对安全来说,是一个很大的挑战。Druid为此提供一种数据库密码加密的手段ConfigFilter。 druid版本为1.1.18。 加密 1.项目中引入依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId ...
分类:
数据库 时间:
2019-12-30 21:34:46
阅读次数:
97
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import com.mongodb.client.ListIndexesIterable; import com.mongodb.client.mod... ...
分类:
数据库 时间:
2019-12-30 14:11:39
阅读次数:
783
1:下载sentinel-Dashboard的源码或者jar:地址:https://github.com/alibaba/Sentinel/releases 2:部署Dashboard 3:spring boot工程添加如下配置: spring: cloud: sentinel: transport ...
分类:
其他好文 时间:
2019-12-30 11:33:09
阅读次数:
102