Java
程序员大佬超
计算机科班人,全栈工程师,分享编程经验、技术干货、工具资源、学习资料等,帮你少走弯路。
展开
-
IDEA解决 properties 文件乱码问题
修改IDEA的默认编码设置。原创 2024-10-26 15:43:57 · 458 阅读 · 0 评论 -
‘dependencies.dependency.systemPath‘ for com.xxx:jar should not point at files within the.. 警告解决方法
如题。原创 2024-01-09 18:41:34 · 5288 阅读 · 2 评论 -
java.lang.RuntimeException: xxl-job jobhandler[...] naming conflicts.
定时任务命名重复了。原创 2023-07-25 14:21:41 · 3656 阅读 · 2 评论 -
Lombok java: 找不到符号 符号: 方法 get...()
如题。原创 2023-06-06 09:10:34 · 5015 阅读 · 8 评论 -
如何在 IDEA 中生成 Maven 依赖关系图?
如题。原创 2023-05-25 09:46:59 · 4264 阅读 · 0 评论 -
IDEA:Error running,Command line is too long. 解决方法
命令行太长。原创 2023-05-18 15:00:25 · 7798 阅读 · 1 评论 -
SpringBoot拦截器excludePathPatterns方法不生效解决方法
其实这个问题大部分情况下无非两个原因。原创 2023-03-07 17:37:17 · 4893 阅读 · 1 评论 -
Windows部署Jar包的三种方式
cmd、bat脚本和WinSW方式。原创 2023-02-22 17:44:37 · 14603 阅读 · 6 评论 -
浮点数值计算精度丢失问题剖析及解决方法
Java和JavaScript的精度丢失解决方案。原创 2023-02-17 16:11:10 · 6946 阅读 · 2 评论 -
The POM for oracle:ojdbc6:jar:11.2.0.3 is missing, no dependency information available
oracle的ojdbc6.jar在maven的中央仓库中没有这个资源,只能通过配置本地库才能加载到项目中去。:将jar包安装到自己的本地库,切换到下载的jar包目录,执行如下命令。-DartifactId:pom文件里artifactId。-DgroupId :pom文件里groupId。-Dversion:pom文件里version。-Dfile:jar包路径。原创 2022-11-22 15:58:46 · 2109 阅读 · 0 评论 -
try using the full name including the namespace, or rename one of the entries解决方法
的 resultMap,也可能是不同的mapper文件,比如。原因:mybatis 的 mapper 文件中定义了。id 都是 NoticeMap,所以会报这个错。原创 2022-11-07 10:39:43 · 1184 阅读 · 0 评论 -
java.lang.IllegalArgumentException: MALFORMED 解决方法
在做 zip 文件解压功能时报如下异常:java.lang.IllegalArgumentException: MALFORMED at java.util.zip.ZipCoder.toString(ZipCoder.java:58) at java.util.zip.ZipFile.getZipEntry(ZipFile.java:566) at java.util.zip.ZipFile.access$900(ZipFile.java:60) at java.util.zip.ZipFile原创 2022-07-05 11:34:41 · 24979 阅读 · 8 评论 -
required a bean of type ‘org.springframework.web.client.RestTemplate‘ that could not be found 解决方法
在使用SpringBoot时不能自动注入RestTemplate,具体报错信息如下Field restTemplate in 'xxx' required a bean of type 'org.springframework.web.client.RestTemplate' that could not be found.The injection point has the following annotations: - @org.springframework.beans.factory.a原创 2022-06-22 14:32:04 · 12347 阅读 · 0 评论 -
websocket 自动断开报错 java.io.EOFException 解决办法
websocket 服务使用 Nginx 反向代理后,发现会自动断开,查看日志如下2021-04-30 10:34:02.404 ERROR 153322 --- [nio-8088-exec-7] com.yxc.imapi.core.WebSocketServer : 发生错误:null,Session ID: 1ejava.io.EOFException at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.fillR原创 2021-04-30 11:05:28 · 16416 阅读 · 6 评论 -
JDK下载及环境变量配置
最近有初学的小伙伴问我这个事,虽然很基础,还是写下吧。jdk下载地址:官网:https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html百度网盘:https://pan.baidu.com/s/1OLedallWVzGxRFBuhF38pw 提取码:rmhp默认安装后 jdk 和 jre 都在 C:\Program Files\Java 目录下。1、配置环境变量右击“我的电脑”–>“属性”–&g原创 2021-04-13 10:10:59 · 459 阅读 · 0 评论 -
Springboot 跨域配置无效,接口访问报错解决方法
跨域配置如下,Springboot 版本为 2.4.1///跨域访问配置@Configurationpublic class CorsConfig { private CorsConfiguration buildConfig() { CorsConfiguration corsConfiguration = new CorsConfiguration(); corsConfiguration.setAllowCredentials(true); //sess原创 2020-12-26 19:16:10 · 20713 阅读 · 16 评论 -
Linux 后台启动运行jar包
1、首先基本的运行 jar 包命令如下java -jar xxx.jar这个命令会锁定命令窗口,当窗口关闭时,程序也就自动退出了,所以需要让 jar 包后台运行。2、后台启动运行nohup java -jar xxx.jar &nohup 命令:忽略所有挂断信号,当窗口关闭时,程序仍然运行。& 符号:程序后台运行。3、指定输出文件如下,xxx.log 就是指定的输出文件,如果不指定,默认在 jar 包所在目录,创建 nohup.out 文件。nohup java原创 2020-07-07 10:19:58 · 1440 阅读 · 2 评论 -
IDEA 打包中文乱码解决方法
idea打包时中文乱码,这是由于 maven 编译时的编码问题所致,解决方法如下1、idea 左上角 File,然后点击 Settings,如下2、点击 Runner,在 VM Options 输入如下代码,点击 OK 即可。-DarchetypeCatalog=internal -Dfile.encoding=GBK...原创 2020-05-14 18:06:25 · 3997 阅读 · 2 评论 -
java二维码开发
之前就写过很多关于二维码的东西,一直没有时间整理一下,所以呢今天就先来介绍一下如何利用java开发二维码。生成二维码有很多jar包可以实现,例如Zxing,QRcode,前者是谷歌的,后者日本的,这里我将对这两种方式的具体实现方法做简单介绍。一、二维码的原理 二维条形码最早发明于日本,它是用某种特定的几何图形按一定规律在平面(二维方向上)分布的黑白相间的图形记录数据...原创 2016-05-11 12:15:19 · 887 阅读 · 0 评论