日常遇到的坑
新时代Java农民工
这个作者很懒,什么都没留下…
展开
-
IDEA偶尔编译的时候不识别lombok
在settings添加下面代码。原创 2023-08-01 11:26:42 · 982 阅读 · 0 评论 -
IDEA commit 代码速度慢
把runnerw.exe 修改runnerw.exe.bak。IDEA commit代码的时候速度慢。进到idea的bin目录下。原创 2023-04-12 18:06:10 · 1602 阅读 · 0 评论 -
Java中Double类型出现科学计数法问题解决方法
Double类型接收参数出现科学计数法原创 2023-02-15 15:38:35 · 1890 阅读 · 0 评论 -
select下拉框禁止下拉,不影响表达提交
select禁止下拉,不影响表单提交原创 2022-02-17 14:27:04 · 1497 阅读 · 0 评论 -
使用postman调接口返回response文件流下载
用postman连接本地调试接口的时候,如果是下载功能返回一个response的文件流,可以使用postman自带功能保存文件之后 重命名后缀就可以打开原创 2021-12-23 14:43:44 · 19834 阅读 · 0 评论 -
IDEA 切换代码克隆方式 ssh跟https
原创 2021-10-15 10:33:48 · 852 阅读 · 0 评论 -
IDEA出现ssh: connect to host port 22: Connection timed out
很有可能是你的git链接已经失效,换了域名,如果你使用的是ssh克隆代码,域名到期就会有这种问题更换远程链接的方式检查该链接是否正确,修改原创 2021-10-15 10:31:03 · 2126 阅读 · 1 评论 -
render process gone
js页面提交表单时页面出现奔溃,并且在f12的debug页面出现了render process gone经检查,是拿未定义的字段作为form表单参数进行提交原创 2021-08-19 13:40:19 · 2220 阅读 · 0 评论 -
IDEA的Tomcat启动日志乱码
启动日志如下添加参数-Dfile.encoding=UTF-8原创 2020-09-02 15:29:49 · 179 阅读 · 0 评论 -
java中将maven的源码打包到本地成source.jar
在pom.xml文件添加打包插件<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</vers...原创 2020-04-24 08:48:12 · 883 阅读 · 0 评论 -
[object HTMLImageElement]
今天在使用JavaScript的click点击时间的时候,用jsp传值作为参数,JavaScript方法体中获取到的参数值是[object HTMLImageElement]后来加了单引号就好click=changeValue(’${user.name}’)...原创 2020-02-24 18:27:31 · 2917 阅读 · 0 评论 -
the server responded with a status of 502 (Bad Gateway)
the server responded with a status of 502 (Bad Gateway)上传图片的时候出现这个错误我是因为开了 Fiddler.exe这个软件 关掉就好了原创 2020-02-24 17:48:33 · 3871 阅读 · 0 评论 -
maven编译报错The goal you specified requires a project to execute but there is no POM in this directory
The goal you specified requires a project to execute but there is no POM in this directory这个错误的原因是因为你编译的这个目录没有pom文件,看下你是不是编译的目录错了.结语小编是一枚Java Coder,业余写文章,现主营微信公众号《Java患者》,喜欢的话关注我的公众号或者加我微信我们一起学习Jav...原创 2020-02-17 20:43:15 · 5742 阅读 · 0 评论 -
解决window使用redis-cli命令行config set requirepass修改redis密码失效
修改方法1当使用redis客户端 redis-cli.exe修改密码时,重启服务端之后密码会失效config set requirepass java123修改方法2 (永久修改)在redis目录打开redis.windown.conf文件全局搜索“requirepass”然后此行代码去掉注释 添加密码 requirepass 前面不要有空格保存后启动再启动客户端需要登陆 ...原创 2020-02-11 17:41:52 · 2897 阅读 · 0 评论