上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 将jar包放入一个新建目录中,在该目录下创建Dockerfile 文件 vi Dockerfile FROM java:8 MAINTAINER zyj VOLUME /tmp ADD demo-0.0.1-SNAPSHOT.jar demo.jar EXPOSE 8081 ENTRYPOINT [ 阅读全文
posted @ 2022-08-09 12:26 石三爷 阅读(893) 评论(0) 推荐(0)
摘要: 之前都能正常抓包小程序的内容,今天突然抓包失败。发现小程序进程的名字从WechatApp.exe变成了WechatAppex.exe,所以也不能抓包了。 经过研究,是PC微信小程序升级了,使用了不同的架构。fiddler也无法获取到参数信息了。 临时解决方案: 打开一个任意小程序,打开任务管理器,找 阅读全文
posted @ 2022-07-01 11:31 石三爷 阅读(981) 评论(0) 推荐(0)
摘要: 第一步:下载jrebel插件 官方下载链接:https://plugins.jetbrains.com/plugin/download?updateId=25523 第二步:安装jrebel插件 选中下载的zip文件,等待安装好后,重启idea 第三部:激活jrebel 当前网上给的破解文件,破解方 阅读全文
posted @ 2022-06-28 09:11 石三爷 阅读(7106) 评论(7) 推荐(7)
摘要: 问题概述在开发springcloud项目中,有一次开发完后打包报错,完整的报错信息如下:[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:compile (default-compi 阅读全文
posted @ 2022-06-19 21:24 石三爷 阅读(5006) 评论(0) 推荐(0)
摘要: 1.单属性变量集合排序,如LIst<Integer> List<Integer> intList = new ArrayList<>(); intList.add(54); intList.add(7674); intList.add(636); intList.add(4325); intList 阅读全文
posted @ 2022-06-10 11:45 石三爷 阅读(3444) 评论(1) 推荐(0)
摘要: 问题今天用idea启动springboot的时候发现某个配置没找到报错: Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException: Could not res 阅读全文
posted @ 2022-04-10 13:40 石三爷 阅读(5760) 评论(0) 推荐(2)
摘要: [root@yunwei-machine /]# df -h 文件系统 容量 已用 可用 已用% 挂载点 /dev/mapper/centos-root 50G 5.0G 46G 10% / devtmpfs 1.9G 0 1.9G 0% /dev tmpfs 1.9G 0 1.9G 0% /dev 阅读全文
posted @ 2022-03-30 15:46 石三爷 阅读(643) 评论(0) 推荐(0)
摘要: 假设a表为会员信息表,需要统计男性会员年龄各阶段的出现的人数 CREATE TABLE `a` ( `id` INT ( 11 ) UNSIGNED NOT NULL AUTO_INCREMENT, `name` VARCHAR ( 255 ) NOT NULL DEFAULT '' COMMENT 阅读全文
posted @ 2022-03-29 17:29 石三爷 阅读(1830) 评论(0) 推荐(0)
摘要: 操作命令: //执行这两条命令cd / git config --global credential.helper store 执行完命令之后会在.gitconfig文件中多加红色字体 [user] name = your name email = your email [credential] h 阅读全文
posted @ 2022-03-23 10:11 石三爷 阅读(508) 评论(0) 推荐(0)
摘要: Springboot 接入Redis后发现隔一段时间连接会超时 command timed out,看了网上很多文章,都说设置超时时间,但其实不管你设置多久都还是会超时,后面想想应该跟超时时间没关系,感觉像是连接通道关闭了。后来了解到,原来springboot2.x之后,默认使用的client是le 阅读全文
posted @ 2022-03-20 14:25 石三爷 阅读(2963) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页