:set mp=“make file.jar”
To use the Hadoop Java API, you must be able to compile the Java sources with the Hadoop library. An easy way is to use a prepared Makefile:
Makefile
containing include /net/projects/hadoop/java/Makefile
When typing make
, every Java file is compiled (with the Hadoop library and some extra classes) to a jar file. It is of course possible to compile just selected sources using:
make ClassName1.jar ClassName2.jar
or
make -f /net/projects/hadoop/java/Makefile ClassName1.jar
Command make clean
remove for every Java file its jar file and subdirectory with compiled classes.
Create a directory and a Makefile
as described and download CompileTest.java. Try compiling it using make
.
If you like using VIM, there is a special configuration available for editing Hadoop java files. Just execute
/net/projects/hadoop/bin/vim
instead of vim
.
This configuration of VIM has following features:
.
, list of members is displayed (if there are any). The code completion is not perfect, but works very well.make
1) in the current directory by pressing F7 (both in normal and insert mode). The file being edited is automatically saved. Compilation errors and warnings are parsed. If there are no errors, the window with compilation errors is closed. If there are errors, the window with compilation errors is opened and the cursor is moved to the first error.\\
comments/uncomments current (or selected) line.
Overview | Step 22: Optional – Setting Eclipse. |
:set mp=“make file.jar”