To improve the efficiency of Java development, Idea must install several plug-ins

1.codeMaker repetitive code generation tool

The domian and dto classes are basically similar, and this tool can quickly generate another class from one class.

2. Convert gsonFormat json to Java class

In many cases, a corresponding class is created according to the json data given by other people's interfaces to receive, then gsonFormat can automatically generate this class for you, but it needs to be simply modified.

3. gitignore visually see which files (folders) are ignored.

can't go wrong

4.checkStyle code specification detection

Refer to http://blog.csdn.net/kingboyworld/article/details/76082399 for specific use

5.findBugs to find those bugs that are hidden by you

It will improve the quality of your code to a level, detect bugs such as nullpointException, bad writing, and multi-threading insecurity.

  1. lombok

Automatically generate setter, getter, hashcode, equals, constructor, mother no longer have to worry about me writing duplicate code.

  1. visualVM

Memory viewing tools, GC, threads, beans, etc. There are traces of memory overflow or something.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326399813&siteId=291194637