I saw some questions similar but none answer this question. For performing java code reviews what do you often look at. Do you recommend books, articles, tools which impressed you most on it.
|
4
|
|||||||||||
|
|
|
First of all, get some of the literature for Fagan code reviews: there are lots of things in code review that can make them more effective but that aren't language dependent. After that, I'd look for the following:
|
||
|
|
|
|
Code Collaborator is another peer code review tool, and one mentioned in other questions about code review. In fact, Code Collaborator was deemed the "correct answer" and has most-votes in the question "Best tools for code reviews." (Yes I work for Smart Bear, maker of Code Collaborator.) |
||
|
|
|
|
not just for java, but there is a web based tool called Crucible for reviewing (code, but can be applicable for other things code oriented, and not just for java). *disclosure: I work for Atlassian. |
||
|
|
|
In addition to what was said, I can really recommend Jupiter, the Eclipse code review tool. Works well and they fix any bugs pretty quickly. |
||
|
|
|
|
Here is a not so comprehensive list:
In addition since you spoke about Java, there are many tools available allow you to analyze the code and check for style and code cleanliness and even potential issues.
All of these can be configured with an automated build/continuous integration process and check for issues even before you go through a manual code review. I used PMD and Checkstyle at my last project and I was pleasantly surprised that how many issues were we able to discover and fix even before we sat down for a code review. Here is an article that I always share with my team for code reviews. This just outlines the general guidelines surrounding code reviews. http://www.developer.com/java/other/article.php/3579756 One thing to note though, is One on one code reviews are not very effective. I personally like to use code reviews as a learning mechanism for other team members to even understand what each person on the team is working on. It should always be a team exercise. It allows junior members some exposure to some good practices. |
|||
|
|
|
I think you need a bit more information in your question. In addition, I would add a couple more tags besides Java. Overall, the more detail you provide, the better answers you receive :) Here are some links to help in answer your questions: http://en.wikipedia.org/wiki/Fagan_inspection Here are a couple of articles that might provide some help: - http://www.developer.com/java/other/article.php/3579756 - http://today.java.net/pub/a/today/2006/08/17/code-reviews.html - Basically, I would Google around and asking on StackOverflow helps Possible Tools: - http://stackoverflow.com/questions/131153/open-source-code-review-tools-mondrian |
|||
|
|
