How to compile java code in the package under Unix environment?
I have a package of java appication. I have copied all the programs in the package into Unix server. I am trying to compile the code in order for .JSP file use all the programs as javaBean. How do I compile?
First I used JDeveloper tool to compile the whole project, and has no problem. In each program I included package packagename. So each program can reference other program in the package without any problem.
If I compile each program using "javac filename.java", the error msg when one program reference a class defined in another program in the same package.
Please help

