- 博客(12)
- 收藏
- 关注
原创 metals doctor报Goto definition for Java classes will not work,please install jdk sources in java home
只需要搜索jdk对应版本的src包下载安装就行。wsl2 Linux下没有安装jdk源码。手动下载src包放到上面报的任意路径下。
2024-10-15 21:41:12 393
原创 记录下使用scala-cli vscode metals时Metals doctor报告出的semanticdb index not being produced问题
因我之前是直接在项目文件夹scala-cli-demo下创建文件的,没有分目录导致编译后的test文件夹没有文件,也就生成不出Semanticdb 文件来,所以doctor报出scala-cli-demo_f1b25db0ce-test文件夹的 Semanticdb 有问题。注意src/main/test/scala下要建一个scala文件。
2024-10-15 21:31:57 737
原创 idea报[Ubuntu] File watcher failed repeatedly and has been disabled
idea External file changes sync might be slow
2023-11-14 11:48:17 2236
原创 Cannot run program “D:\JavaPrograms\java\jdk-17.0.4.1\bin\java.exe“
idea因为sdk配置路径失效问题而导致的启动报错
2023-06-20 10:22:16 1346
原创 HashMap计算key索引算法为什么是hash(key)&(n = table.length - 1)
HashMap计算key索引算法为什么是hash(key)&(n = table.length - 1)前置知识在代码中 Map map = new HashMap(3) 这样实例化一个map对象后,map的table长度实际是多少?答案是4,在HashMap底层,会根据用户设置的长度num变更为比num大的最近的一个$2^n$数,如果未设置则是默认16index计算源代码按常理来说index = hash(key) % n,那为什么 hash & (n-1) .
2022-01-16 01:05:34 682
原创 JDK11中ProxyGenerator不再是public?
我用的是JDK11,发现ProxyGenerator不再是public了有时候需要JDK动态代理时生成的$Proxy0.class文件,而在高版本的JDK中,不知为什么这个类不在是public的,而是默认的class类型。一开始还有点懵,所以后来就把这个类拷贝到自己的包下了以及GetBooleanAction类,之后根据IDE的提示,把里面的方法加上@Override,当然不加也行.如下图所示...
2020-03-18 14:18:34 1215
原创 springboot单元测试读取yml文件
pom文件配置<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> ...
2019-04-24 15:18:32 6630
转载 java fastjson生成json字符串时null属性不显示
案例Map<String, Object> fastJsonMap = new HashMap<String, Object>(); List nullList = null; List emptyList = new ArrayList(); fastJsonMap.put("num", 1); fastJsonMap.put("emptyStr", "");...
2019-04-12 11:40:52 1859
原创 java中优雅判断字符串数组中是否包含某个字符串?
方式一String[] strArr = {"aa", "bb", "cc"};boolean res = Arrays.asList(strArr).contains("aa"); // true方式二String[] strArr = {"aa", "bb", "cc"};long count = Arrays.stream(strArr).filter(str -> str...
2019-04-12 11:00:47 36569 7
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人