Table of Contents
Java Stuff to Learn
Here is a quick overview of Java Tools that may be worth knowing.
Install Java JDK on VMWare + CentOS 6
This assumes you're in VMPlayer with a CentOS 6.3 guest (if not: Install VMPlayer and CentOS 6.3)
Here is a quick overview of Java Tools that may be worth knowing.
This assumes you're in VMPlayer with a CentOS 6.3 guest (if not: Install VMPlayer and CentOS 6.3)
Even though our first example used Vim, I recommend using an IDE for Java coding. Note, this recommendation is just for Java. For other languages I usually just use a decent text editor.
JDB is a command line debugger. But, most likely, you'll debug wih your IDE. Here is a good Java Debugging Tutorial to start with.
If you format your code and comments in a specific, not too excessively restrictive format, there are software tools that will generate some pretty nice looking documentation.
Javadoc is part of the standard JDK distribution.
Doxygen is a popular open source project that supports multiple languages, including Java. It supports most/all Javadoc constructs, adds a few, and simplifies a few more.
These are popular Java web servers, similar to how the Apache httpd Web Server can serve PHP.
These lighter servers do most, if not all, of what you want, and are commonly used by companies that use a variety of techs such as Java, PHP, Perl, Python, Ruby. Companies that focus on Java tend to use the Full Java App Servers.
These tools help build large programs and manage dependancies.
Being able to automate tests has always been key to developing quality software/hardware. The main test frameworks for Java are:
The golden rule of version control: Merge early, merge often. When working with other programmers/engineers, the longer you go without merging your work back into the mainline, the harder it is to perform the merge. The Continous Integration (CI) tools help the merge/integration process. Some of the tasks are:
Jenkinsis the most popular CI tool. Jenkins is a fork of Oracle's Hudson. Here is a partial list of other open source projects that Oracle tried to kill: LibreOffice fork of OpenOffice MariaDB fork of MySQL Son of Grid Engine fork of Sun Grid Engine (SGE) Illumos fork of Solaris
Here are some open source Java Code Coverage Tools.
There are some careless bugs that are difficult to can with testing, but are easily caught with a code checking program. I almost always wish I had run these before debugging.
Google CodePro Analytix is a free, but not open source, professional-quality plugin for Eclipse. It looks amazingly powerful, but it is not a google supported project. I hope it doesn't die before it gets open-sourced.