A summary of the IntelliJ IDEA plug-ins that have been used in development. Help me greatly improve the development efficiency.

How to install IntelliJ IDEA plug-in: On the Mac, click: Preferences -> Plugins. In the pop-up window, Marketplace is the plug-in Marketplace where you can search for installed plug-ins. Installed is the Installed plug-in.

Lombok

A comment or a couple of comments can save you a lot of code.

For example, @getter and @setter generate getters and setters for all properties in a Java class. Constructor (@noargsconstructor); constructor (@allargsconstructor); @toString generates ToString methods for Java classes and so on.

Use Lombok in detail

MyBatisX

Jump between Mapper interface and Xml file.

  • Jump from the Mapper class to the corresponding Xml, and from a method of the Mapper class to a node in the corresponding Xml.
  • Jump from Xml to the corresponding Mapper.
  • Generate Xml nodes from Java class methods.

RestfulToolkit

Find the corresponding Controller based on the URL, a must for Spring Web project development. Mac shortcut keys: Command +

Grep Console

Console log highlight. You can also filter logs by putting the filtering results on a separate TAB.

Alibaba Java Coding Guidelines

Alibaba “Java development Manual” supporting plug-ins, you can real-time check the code does not conform to the manual specifications.

Maven Helper

Quickly identify and resolve dependency conflicts for Maven projects.

Statistic

Code statistics plug-in that counts the number of lines and file sizes of project code.

Translation

English translation, support translation selected content, translation of the entire document.

SpotBugs

Bug scan plug-in

Original address: duanjw.com/posts/e60f6…