Eclipse plug-ins practical summary

Decompile JD

        Can decompile class file , JD-the Eclipse  and the GUI-JD, http://jd.benow.ca/

FindBugs examine the code hidden Bug

          Find FindBugs is a bug in the program in a Java program that can find the code that can go wrong, hence the saying: the Eclipse plugin - FindBugs Bug check codes hidden [blog] .note , blog: the Eclipse plugin - FindBugs examine the code hidden Bug .

Code standards checking Checkstyle

        Configuration: Preferences -> Checkstyle in Global Check Configurations selected Sun Check (Eclipse)

Potential problems PDM checks Java source file

        Less used, the official website: https://pmd.github.io/  .
        mainly include:
        Empty try / catch / finally / switch statement block 
        Unused local variables, parameters and private methods 
        Empty if / while statement 
        Overly complex expressions, such as unnecessary if statements, etc. 
        Complex etc.

FIG class greenUML 

        http://www.cse.buffalo.edu/faculty/alphonce/green ( link: http://pan.baidu.com/s/1pKl9aRp  Password: yazc )
        Use:
        1 package right package, to find Green UML;
        2 Click Add to New Class Diagram;
        3 Click a specific category, right-click on the Add to Last Viewed Class Diagram.


Published 201 original articles · 98 won praise · views 770 000 +

Guess you like

Origin blog.csdn.net/Jerome_s/article/details/54427321