
BUG整理
爱码者
你感受到的压力都是来自于你自己不努力不积极而又不甘于现状的恐慌!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
解决Windows10 下WireShark3.4.8不显示本机接口(网卡)的问题,无法捕获使用
1、问题2、解决办法第一步:卸载下载wireshark默认安装的npcap-1.31默认安装路径:如图所示第二步:安装下载WinPcap : https://www.winpcap.org/install/bin/WinPcap_4_1_3.exe安装即可!3、回归问题在卸载npcap-1.31后的情况下,我把WinPcap也卸载了,wireshark依旧可以显示本地接口。说明:WinPcap安装后是可以卸载的。4、问题解决图示...原创 2021-10-19 20:46:11 · 2245 阅读 · 0 评论 -
使用kafka+elk 日志分析系统出现的问题
出现的问题Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.autoconfigure.kafka.KafkaAnnotationDrivenConfiguration]: Constructor threw exception; nested exception is org.springframework.beans.facto原创 2020-12-16 14:58:07 · 522 阅读 · 0 评论 -
关闭kafka日志在控制台打印
<!-- 关闭关于kafka的ProducerConfig和ConsumerConfig日志 --><logger name="org.apache.kafka.clients.producer.ProducerConfig" level="off" /><logger name="org.apache.kafka.clients.consumer.ConsumerConfig" level="off" /><!-- 关闭kafka所有日志 --&g.原创 2020-12-16 14:56:00 · 3904 阅读 · 1 评论 -
springboot和kafka版本兼容问题
问题Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.boot.autoconfigure.kafka.KafkaAnnotationDrivenConfiguration]: Constructor threw exception; nested exception is org.springframework.beans.factory.原创 2020-12-16 14:50:31 · 6164 阅读 · 3 评论 -
SpringBoot2.X集成redis集群总结与出现的问题
一、集成步骤操作redis有两种方式:第一种Jedis使用直连方式连接Redis Server,在多线程环境下存在线程安全问题,需要增加连接池创建Jedis客户端多实例线程安全问题,基于传统I/O模式,是阻塞式传输。第二种Lettuce的连接是基于netty,在多线程环境下不存在线程安全问题,这个连接实例当然也是可伸缩的设计,也可以增加多实例连接,netty本身就是基于NIO,从而提供了异步和同步数据访问方式,用于构建非阻塞的反应性程序。在业务中使用了多线程,鉴于安全问题,选择使用第原创 2020-12-16 14:35:19 · 1044 阅读 · 0 评论 -
vue 异步请求获得数据之后,无法渲染到页面,最简单的操作即可解决
问题:我们异步请求后端接口之后,成功获取数据,给data属性赋值,无法渲染到页面我获取的一个list数据网友的解决办法:Vue.$set()方法,修改 数组 / 对象 的某个属性值(这不符合我的需求,我要给整个数组重新赋值)provide 和 inject不使用的原因很简单(当然不知道这么用的意义是啥,我试了,不好使,如果你们知道,可以留言说一下)强制刷新使用 Vue.$forceUpdate() (不好使)等等之类的。。。我的解决办法:给你要重新赋值的变量,清空,之后重新赋原创 2020-09-09 19:34:16 · 12354 阅读 · 1 评论 -
SpringBoot整合Jsp出现页面找不到和页面无法解析
一、页面找不到引入依赖<!--springboot内嵌tomcat对jsp的解析包--> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> <s...原创 2020-04-01 13:08:27 · 1603 阅读 · 0 评论 -
完美解决 Caused by: java.lang.ClassNotFoundException: org.w3c.dom.ElementTraversal
Caused by: java.lang.ClassNotFoundException: org.w3c.dom.ElementTraversal网上的解决办法:在pom.xml中添加就行<dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artif...原创 2020-03-31 22:47:52 · 7798 阅读 · 0 评论 -
启动SpringBoot之后,显示Tomcat端口号被占用
window下:按window+R,输入cmdcmd命令输入 netstat -ano 找寻运行的进程netstat -ano | findstr “9999” 找到对应端口号为9999的进程idtaskkill /pid 6676 /f 强制结束对应pid的进程重新启动tomcat(运行主程序)...原创 2019-12-18 08:57:53 · 681 阅读 · 0 评论 -
failed to execute prompt script (exit code 1) could not read Username for 'https://github.com': No
遇见的问题:unable to read askpass response from 'C:\Users\..\..\demo failed to execute prompt script (exit code 1) could not read Username for 'https://github.com': No error’出现该问题的原因:就是在config的文件中没有...原创 2019-10-27 23:30:44 · 5577 阅读 · 0 评论 -
报错 1055 - Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated
mysql版本 5.7出现的问题:[Err] 1055 - Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'community.tab_order_goods.goods_name' which is not functionally dependent on c...原创 2019-10-23 19:24:46 · 1015 阅读 · 0 评论 -
java.net.URISyntaxException: Illegal character in authority at index 7http://oss-cn-beijing.aliyuncs
需求:将文件上传到《阿里云的对象存储OSS上》遇见的问题:Caused by: java.net.URISyntaxException: Illegal character in authority at index 7: http://oss-cn-beijing.aliyuncs.com at java.net.URI$Parser.fail(URI.java:2848) at...原创 2019-10-16 20:24:13 · 9814 阅读 · 4 评论 -
java.lang.Exception: No tests found matching [{ExactMatcher:fDisplayName=contextLoads],
遇见的问题:java.lang.Exception: No tests found matching [{ExactMatcher:fDisplayName=contextLoads], {ExactMatcher:fDisplayName=contextLoads(com.baidu.user.scw.ScwUserApplicationTests)], {LeadingIdentifie...原创 2019-10-16 13:31:54 · 1147 阅读 · 0 评论 -
navicat 无法连接Linux(centos7)中的mysql数据库,出现(10060 “Unknown error”)错误
出现的问题:解决办法:关闭Linux中的防火墙暂时关闭防火墙systemctl stop firewalld.service开机禁用防火墙(推荐)systemctl disable firewalld.service排查范围:(1)禁用windows防火墙(2)查看root用户或者(你所使用的用户)的远程访问权限是否放开如果没有放开,执行下面的SQL语句放开grant ...原创 2019-10-11 19:11:45 · 2245 阅读 · 0 评论 -
[ERROR] 17109 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
背景:maven项目,使用“逆向工程”遇见的问题:[ERROR] 17109[ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.[ERROR] Re-run Maven using the -X switch to enable full debug log...原创 2019-10-11 18:43:34 · 4751 阅读 · 1 评论