IDEA插件收集
程序员文章站
2022-03-04 13:35:15
...
IDEA插件收集
1、Lombok
Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java.
Never write another getter or equals method again, with one annotation your class has a fully featured builder, Automate your logging variables, and much more.
lombok maven插件地址,示例如下:
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.16.20</version>
<scope>provided</scope>
</dependency>
具体使用可以参考:https://www.cnblogs.com/heyonggang/p/8638374.html
2、Translation
一款翻译插件,多翻译引擎:Google翻译、有道翻译、百度翻译、多语言互译、语音朗读、自动选词、自动单词拆分等功能
3、FindBugs
完代码后检测下 避免低级bug,强烈建议用一下,一不小心就发现很多老代码的bug
持续收集中