2020年1月13日

摘要: 转自https://blog.csdn.net/Programmer__Wang/article/details/88538993 参考https://blog.csdn.net/kxj19980524/article/details/85108047 使用service //本质原因:spring 阅读全文
posted @ 2020-01-13 09:56 Alex_zhuang 阅读(1558) 评论(0) 推荐(0)

2020年1月10日

摘要: nohup /app/mongodb/bin/mongod -f /app/mongodb/mongodb.conf --dbpath=/app/mongodb/db/ --bind_ip_all >start.log& nohup /app/mongodb/bin/mongod 启动程序 -f / 阅读全文
posted @ 2020-01-10 10:12 Alex_zhuang 阅读(754) 评论(0) 推荐(0)

2020年1月9日

摘要: 在applocation.yml文件中, mybatis: configuration: #开启自动下划线格式转驼峰格式 map-underscore-to-camel-case: true config-locations: classpath:/mybatisConfig.xml mapper- 阅读全文
posted @ 2020-01-09 13:52 Alex_zhuang 阅读(3901) 评论(0) 推荐(1)

2019年12月27日

摘要: 需要下载MP_verify_EZhQkscUv44pvLNO.txt文件到Web服务器到根目录下 http://不能加 https://不能加 默认用http协议访问 阅读全文
posted @ 2019-12-27 12:15 Alex_zhuang 阅读(4311) 评论(0) 推荐(0)

2019年5月9日

摘要: java spring 阅读全文
posted @ 2019-05-09 18:57 Alex_zhuang 阅读(804) 评论(0) 推荐(0)

2019年1月15日

摘要: "C:\Program Files\Java\jdk1.8.0_181\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2018.2.4\lib\idea_rt.jar=5527 阅读全文
posted @ 2019-01-15 14:49 Alex_zhuang 阅读(1199) 评论(0) 推荐(0)

2018年12月25日

摘要: 原链接:https://my.oschina.net/feichexia/blog/196575 现实企业级Java开发中,有时候我们会碰到下面这些问题: OutOfMemoryError,内存不足 内存泄露 线程死锁 锁争用(Lock Contention) Java进程消耗CPU过高 ..... 阅读全文
posted @ 2018-12-25 11:25 Alex_zhuang 阅读(273) 评论(0) 推荐(0)

2018年9月27日

摘要: 这里是IP摄像头的服务地址列表: http://192.168.31.49:8080/video 是 MJPEG URL. http://192.168.31.49:8080/shot.jpg 获取最新一帧 http://192.168.31.49:8080/audio.wav 是WAV格式的音频流 阅读全文
posted @ 2018-09-27 11:34 Alex_zhuang 阅读(869) 评论(0) 推荐(0)

2018年8月31日

摘要: 0.姓名脱敏,对姓名第二个字用*进行替换。 实现情况如图所示, SQL: SELECT REPLACE(cust_name,SUBSTR(cust_name,2,1), "*") AS name from ‘表名’; 1.联系方式脱敏,对联系电话中间四位用*进行替换。 实现情况如图所示: SQL: 阅读全文
posted @ 2018-08-31 13:22 Alex_zhuang 阅读(12466) 评论(0) 推荐(0)

2018年8月17日

摘要: 个位数统计 (15) 个位数统计 (15) 时间限制 1000 ms 内存限制 32768 KB 代码长度限制 100 KB 判断程序 Standard (来自 小小) 题目描述 给定一个k位整数N = dk-1*10k-1 + ... + d1*101 + d0 (0<=di<=9, i=0,.. 阅读全文
posted @ 2018-08-17 14:10 Alex_zhuang 阅读(467) 评论(0) 推荐(0)