java -classpath "/devuser/test/test/bismaya/TestPOC/poc.jar:/devuser/test/test/bismaya/TestPOC/ojdbc7.jar" com.edu.test.main.Main
While creating the jar make sure you have selected Main as the class containing main method. Add all the jars to classpath by separating :.
Or
java -classpath `pwd` com.edu.test.main.Main.
In this case all the jars should be present in the current dir.
Or
java -jar jarName.jar --> provided there is no dependency jar is required.
While creating the jar make sure you have selected Main as the class containing main method. Add all the jars to classpath by separating :.
Or
java -classpath `pwd` com.edu.test.main.Main.
In this case all the jars should be present in the current dir.
Or
java -jar jarName.jar --> provided there is no dependency jar is required.