
idea
薄荷味的风
这个作者很懒,什么都没留下…
展开
-
未配置SpringBoot配置注释处理器
在pom.xml文件中添加依赖。原创 2022-08-30 20:37:32 · 4686 阅读 · 3 评论 -
‘pom.xml‘ has syntax errors
构建SpringBoot项目时报错:'pom.xml' has syntax errors原创 2022-08-30 20:29:09 · 14590 阅读 · 2 评论 -
javafx乱码
使用低版本的jdk(如jdk11),运行javafx,容易出现上述乱码问题。原创 2022-08-24 15:37:47 · 1340 阅读 · 0 评论 -
未解析的依赖项: ‘net.sf.json-lib:json-lib:jar:2.4‘
classifier>jdk15原创 2022-07-20 14:22:07 · 4561 阅读 · 0 评论 -
Mac: Web server failed to start. Port 8080 was already in use.
显示Web服务器无法启动。端口8080已在使用。原创 2022-07-19 11:57:24 · 1184 阅读 · 0 评论 -
程序包javafx.scene.media不存在
打开pom.xml找到下面的<dependency> </dependency>然后在它的下面输入<dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-media</artifactId> <version>11.0.2</version></dependency&g...原创 2022-03-21 14:46:50 · 3163 阅读 · 1 评论 -
解决报错Text note: Client requested name “.SFNS-Regular“, it will get Times-Roman rather than the intend
使用idea运行javafx项目时常常报错:CoreText note: Client requested name ".SFNS-Regular", it will get Times-Roman rather than the intended font. All system UI font access should be through proper APIs such as CTFontCreateUIFontForLanguage() or +[NSFont systemFontOfS原创 2022-01-09 09:08:15 · 2015 阅读 · 1 评论 -
idea框选为矩形解决方案
第一种方案(简单粗暴):关掉idea(记得保存代码)重新启动。第二种方案:打开菜单栏的Edit,取消勾选Column Selection Mode;然后就解决了:原创 2022-01-07 10:11:39 · 1147 阅读 · 0 评论 -
idea常用快捷键
首先要把输入法切换成英文格式sout+回车 快速生成输出语句: System.out.println();main+回车(psvm加回车) 快速生成main方法:public static void main(String[] args) { }ctrl+/ 快速生成注释://...原创 2022-01-05 20:09:27 · 188 阅读 · 0 评论