Some useful plugins for idea

Some plug-ins useful for idea are recorded as follows:

1.Free Mybatis plugin

free-idea-mybatis is a plug-in that enhances IDEA’s support for mybatis. The main functions are as follows: 
generate mapper xml files
quickly jump from code to mapper and return code from mapper
mybatis automatic completion and syntax error prompts
integrated mybatis generator gui interface

2.Maven Helper 

Handle the jar conflict plugin in the pom.xml file

For example, two versions of fastjson.jar are cited in the project, which are

fastjson: 1.2.28 
fastjson: 1.2.3

We used a certain class in 1.2.28, such as class A. In the version update, this class was removed from version 1.2.3. However, in our project, maven packaged the 1.2.3 jar in, then we will report Exception, this class does not exist, but when we adjust the error, we find that this class exists, then how do we find the source of the problem? Which package needs Exclude? 

3.Lombok 

Lombok can simplify java code in the form of simple annotations and improve the development efficiency of developers. For example, for javabeans that often need to be written in development, it takes time to add corresponding getter/setters, and perhaps to write constructors, equals and other methods, and they need to be maintained. When there are many properties, there will be a large number of getter/setter methods. It seems very verbose and does not have much technical content. Once the attributes are modified, it is easy to forget to modify the corresponding method.

Guess you like

Origin blog.csdn.net/wanyuanshi/article/details/109312565