logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【MAVEN】maven package错误:Failed to execute goal 。。。There are test failures.

1. 问题描述使用idea的maven package打包MQ的rocketmq-console时出现Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project rocketmq-console-ng: There are test failu

#maven#java#bug
【SpringSecurity】SpringSecurity+Vue前后端分离使用验证码时后端存入到session中是null值的问题解决

1. 问题描述SpringSecurity+Vue前后端分离使用验证码,后端将生成的验证码存入到session中,但是在进行验证码验证时获取session中的验证码值时null的,后端生成的验证码确实是生成好了。问题就是存不进session中。2. 解决问题后端设置跨域:后端跨域问题有很多解决方式,这里只写一种通过配置类的方式。主要跨域类/*** 解决跨域请求的*/@Configurationpu

#http#java
针对git的ssh问题:Please make sure you have the correct access rights and the repository exists

Please make sure you have the correct access rights and the repository exists.。SSH公钥解决git问题1. 问题描述2. 原因分析3. 解决方法git问题1. 问题描述2. 原因分析可能是ssh不起作用了冲突了。3. 解决方法先检查Git的全局设置git config --list如果user.name和user.em

#git#github#ssh
【RocketMQ】rocketmq在centos7安装和在windows上安装其控制台 - 超详细教程 - 带截图

RocketMQ的详细安装教程1. VM centos下安装2. windows下安装RocketMQ的控制台1. VM centos下安装http://rocketmq.apache.org/release_notes/。下载相关版本的包,此包是放在centos下解压的包。我下载的是4.7.1版本的、也可以下载其他别的版本。下载的是二进制的包下载后将压缩包复制到VM Centos下的目录(可以使

#java#centos#linux +1
【docker】Kibana server is not ready yet

解决方法一查看防火墙状态systemctl status firewalld.service接下来需要关闭防火墙,systemctl stop firewalld.service关闭之后再查看防火墙状态systemctl status firewalld.service另外几个命令学习永久关闭防火墙,重启系统也不会开启防火墙systemctl disable firewalld.service..

#linux#java#docker
【IDEA BUG】IDEA运行失败,出现用户目录下出现java_error_in_idea_XXX.log文件,关键错误EXCEPTION_ACCESS_VIOLATION (0xc0000005)

1. 问题描述IDEA启动不了、连界面都看不到、在任务管理器中也找不到IDEA的进程。但是在用户目录下发现生成了个java_error_in_idea_16596.log文件。打开内容如下:2. 解决百度后发现主要原因是:EXCEPTION_ACCESS_VIOLATION (0xc0000005)。看了很多文章,发现都是同一篇文章转载的。结果也都解决不了。参考文章 文章内容都一样。个人解决方法:

#java
【springcloud问题】Could not locate PropertySource and the fail fast property is set, failing

问题描述:使用springcloud的本地配置中心时出现:Could not locate PropertySource and the fail fast property is set, failing解决办法使用的配置中心的依赖不加版本就行了,即使用导入的springcloud版本中的spring-cloud-config-server的默认依赖就行了。<dependency>&

#java#spring boot#spring
docker修改oracle的服务名

# 进入 oracle容器[root@yanglg ~]# docker exec -it 05 /bin/bash# 刷新配置[oracle@7ac184622d55 /]$ source ~/.bash_profile# 连接oracle[oracle@7ac184622d55 /]$ sqlplus /nologSQL*Plus: Release 11.2.0.1.0 Production

#oracle#docker#数据库
到底了