- 博客(11)
- 收藏
- 关注
原创 unable to load script from assets ‘index.android bundle‘ ,make sure your bundle is packaged correct
react-native 启动的时候报错unable to load script from assets 'index.android bundle'2017年12月27日 13:33:01阅读数:399 实行命令react-native run-android报以下错误unable to load s...
2023-01-18 15:57:04
317
1
原创 我的Docker部署笔记
windwos启动rockermq1、start mqnamesrv.cmd2、start mqbroker.cmd -n 127.0.0.1:9876 autoCreateTopicEnable=true启动reids哨兵docker run -it \--privileged=true \-p 6384:6384 \-v /data/redis/redis6384/config/redis.conf:/etc/redis/redis.conf \-v /data/redis/r
2021-06-29 11:31:37
4907
1
原创 JAVA版简单LRU算法
手写简单版LRU算法public class LRU<K,V> { private int capacity; private HashMap<K,Node<K,V>> map; private Node head; private Node tail; public LRU(int capacity) { this.capacity = capacity; map = new Hash.
2021-04-09 16:08:01
138
原创 mysql监控相关命令
--查看查询缓存是否开启SHOW VARIABLES LIKE '%query_cache%';--查看查询缓存命中次数SHOW STATUS LIKE '%qcache%';--在执行结果中可以看到是否有表锁等待或者死锁,如果有死锁发生,可以通过下面的命令来杀掉当前运行的事务:KILL 165667 ; KILL 后面的数字指的是 trx_mysql_thread_idSELECT * FROM INFORMATION_SCHEMA.INNODB_TRX--查看锁表SELECT * FR..
2020-06-19 16:35:08
293
原创 IDEA创建类时生成类注释信息
/** * @PackgeName: ${PACKAGE_NAME} * @ClassName: ${NAME} * @Author: gxj * @Date: ${DATE} ${TIME} * @project name: ${PROJECT_NAME} * @Version: v1.0.0 * @...
2019-12-13 15:48:19
296
转载 股票接口调用
聚合数据:https://www.juhe.cn/docs/api/id/21腾讯股票数据接口:https://blog.youkuaiyun.com/ustbhacker/article/details/8365756新浪股票数据接口:https://blog.youkuaiyun.com/simon803/article/details/7784682其它它接口:http://quote.eastmoney.com/...
2018-05-16 10:20:57
2070
原创 eclipse配置maven
一、阿里云仓库jar包搜索地址:http://maven.aliyun.com/nexus/maven中setting.xml中<url>中的远程仓库地址:http://maven.aliyun.com/nexus/content/groups/public/二、sonatype仓库jar包搜索地址:https://repository.sonatype.org/maven中setti...
2018-04-28 16:16:03
496
原创 ajax 跨域请求
一、通过<script src=""></script>方式http://7.7.7.130:8088/danmu_websocket/data.js中的数据如下:getData('{"name":"jason","age":"18","address":"CQ"}');<script src=&am
2018-04-25 11:34:05
323
转载 Linxu下goim项目部署
项目官方地址:https://github.com/Terry-Mao/goim/blob/master/README_cn.md一:安装jdk1.8及以上版本可参考链接:https://www.cnblogs.com/Dylansuns/p/6974272.html进入到该目录没有则创建:cd /data/programfiles下载:wget http://download.oracle.co...
2018-04-10 14:00:11
2005
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人