随笔分类 -  IDEA

1 2 下一页

IDEA - .puml文件是什么?PlantUML基础使用教程
摘要:.puml文件是什么? 是根据PlantUML插件生成的一个类图格式。如果需要查看,也必须在插件的帮助下,查看类图 PlantUML基础使用教程 一、下载idea插件 idea从 FIle-->Settings-->Plugins-->Marketplace 进入到插件下载界面,搜索PlantUML 阅读全文

posted @ 2024-03-12 15:26 frank_cui 阅读(2473) 评论(0) 推荐(0) 编辑

IDEA - 代码覆盖率测试报告
摘要:如何跑测试时计算code coverage 如何只看某几个类的覆盖率 如果这里不specific选择你想看的class, 很容易出现相同包下所有的类都被展示出来(可能某些类并不是该module拥有的) 如何导出code coverage报告 https://zhuanlan.zhihu.com/p/ 阅读全文

posted @ 2023-02-24 14:24 frank_cui 阅读(364) 评论(0) 推荐(0) 编辑

IDEA - 开启面包屑BreadCrumbs + 清除代码覆盖率
摘要:1.开启面包屑BreadCrumbs 2.清除代码覆盖率 可以通过单击左侧的覆盖栏(彩色的,靠近行号)来隐藏覆盖,然后点击Hide coverage 阅读全文

posted @ 2022-10-11 14:50 frank_cui 阅读(633) 评论(0) 推荐(0) 编辑

IDEA - 实时显示当前光标在哪个类,哪个方法里
摘要:问题:如何显示这一块? 解决方案: 阅读全文

posted @ 2021-12-10 17:56 frank_cui 阅读(492) 评论(0) 推荐(1) 编辑

IDEA - 全局(全文)搜索快捷键CTRL+SHIFT+F无效
摘要:IDEA全局(全文)搜索快捷键CTRL+SHIFT+F无效,明明是这个快捷键,电脑都按爆了,也没有效果。原来是热键冲突,被搜狗输入法、qq输入法等其他软件占用了。果断修改搜狗输入法、qq输入法的热键,改为其他的就好啦。 原文链接 https://blog.csdn.net/weixin_339954 阅读全文

posted @ 2021-12-07 13:35 frank_cui 阅读(549) 评论(0) 推荐(0) 编辑

IDEA - 右边找不到maven窗口不见了
摘要:方案一:首先idea自带了maven控件,不像Eclipse还需要下载控件,如果你以前有maven在右边,出于某种原因,消失找不到 了,你可以试试我写的方法。 方法1.你点击一下你idea界面最左下角的那个小框,maven应该从里面找到 方法2.点击菜单栏View->Tool Windows->Ma 阅读全文

posted @ 2021-12-07 10:56 frank_cui 阅读(5408) 评论(0) 推荐(2) 编辑

IDEA - 设置字体,滚轮缩放,设置单击打开文件,自动定位文件
摘要:设置滚轮放大字体 https://jingyan.baidu.com/article/fb48e8be6eb1c22e622e149f.html 字体 设置单击打开文件,自动定位文件 更多设置 Idea修改主题,字体等常规操作:https://blog.csdn.net/lytwy123/artic 阅读全文

posted @ 2021-12-07 10:32 frank_cui 阅读(461) 评论(0) 推荐(0) 编辑

IDEA - Import/Export Run/Debug Configuration
摘要: 阅读全文

posted @ 2021-12-02 16:43 frank_cui 阅读(48) 评论(0) 推荐(0) 编辑

IDEA - Increase memory heap
摘要: 阅读全文

posted @ 2021-12-01 17:07 frank_cui 阅读(20) 评论(0) 推荐(0) 编辑

IDEA - not supported in -source 1.5
摘要: 阅读全文

posted @ 2021-12-01 17:05 frank_cui 阅读(13) 评论(0) 推荐(0) 编辑

IDEA - How to hide code coverage...
摘要: 阅读全文

posted @ 2021-12-01 17:04 frank_cui 阅读(84) 评论(0) 推荐(0) 编辑

IDEA - IntelliJ does not show project folders
摘要: 阅读全文

posted @ 2021-12-01 17:03 frank_cui 阅读(19) 评论(0) 推荐(0) 编辑

IDEA - @Test keyword not highlight
摘要: 阅读全文

posted @ 2021-12-01 16:06 frank_cui 阅读(9) 评论(0) 推荐(0) 编辑

IDEA - URI is not registered
摘要: 阅读全文

posted @ 2021-12-01 16:05 frank_cui 阅读(10) 评论(0) 推荐(0) 编辑

IDEA - Error:java: javacTask: source release 8 requires target release 1.8
摘要:solution https://stackoverflow.com/questions/29888592/errorjava-javactask-source-release-8-requires-target-release-1-8 阅读全文

posted @ 2021-12-01 16:04 frank_cui 阅读(104) 评论(0) 推荐(0) 编辑

IDEA - 解决自动重置Language Level和JavaCompiler版本的问题
摘要:Language Level 的理解 在java项目中必不可少的是我们要指定一个jdk。 在指定jdk的同时,还可以指定jdk的Language level,这个有点像我们工程最低支持版本。比如Language level 设置了5.0 只是就不能出现使用6.0/7.0特性的代码。 因为这些特性在5 阅读全文

posted @ 2021-08-21 00:06 frank_cui 阅读(1533) 评论(0) 推荐(0) 编辑

IDEA - 解决lombok无法获取get、set方法报错问题
摘要:遇到这个问题大多数都是IDEA的设置问题,这里不多赘言,直接上图,按照图上去配置好就OK了。 图一: 图二: 图三: 原文链接:https://blog.csdn.net/ybcljay/article/details/104320895 阅读全文

posted @ 2021-08-17 21:13 frank_cui 阅读(641) 评论(0) 推荐(0) 编辑

IDEA - 断点的导入导出
摘要:IDEA如何导出断点成文件保存起来? 在实际的工作过程中,断点的导入导出很是重要,特别是在多人合作开发同一代码片段时。下面介绍在IDEA中如何导出自己的断点,已文件的方式传递给别人。上图断点信息。都会存放下当前项目目录的.idea/workspace.xml中 自己将整个workspace.xml文 阅读全文

posted @ 2021-06-17 13:40 frank_cui 阅读(541) 评论(0) 推荐(0) 编辑

IDEA - 添加Tomcat服务器
摘要:为什么会出现警告? 因为我们访问一个网站,需要制定一个文件夹的名字!这是必须要得配置。 如何解决警告⚠️? 阅读全文

posted @ 2020-11-21 15:52 frank_cui 阅读(292) 评论(0) 推荐(0) 编辑

IDEA - 调试Maven中的某一个dependency + 多module联调
摘要:情景 项目A 可以local run,在A 的pom文件里,你想local debug 其中一个dependency B 的具体逻辑 (B 的源代码你也有), 但是B 同时也依赖了别的dependency, 例如 C,D,E。你需要做: 步骤1:从A的pom.xml里面注释掉B / 从别的depen 阅读全文

posted @ 2020-01-03 14:03 frank_cui 阅读(3752) 评论(0) 推荐(0) 编辑

1 2 下一页
< 2025年2月 >
26 27 28 29 30 31 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 1
2 3 4 5 6 7 8

导航

统计

levels of contents
点击右上角即可分享
微信分享提示