How to zip my java code
Hi all,I am in java JSP development environment. How to distribute my code for reuse my team member, they should not see my code, but they can access my code. Some way of jar or zip file sysem in jsp progreamserver tomcat serverregards,TGS
Put the class files in a JAR file, then give it to your team member. S/he should put it inJAVA_HOME/jre/lib/ext/Finally, when his/her code is ready, s/he should take the JAR and put it in the same directory as the main class of his/her code.