Java classpath, jar file with no .jar extension in Weblogic over Unix?

No. If you're using Java 5 or earlier, you must explicitly name all classes and jar files to be loaded. Obviously, since the old one, libA.jar.

Old isn't named, it won't be loaded. It's a bit of a different story if you're using Java 6, since concept of wildcard matching exists there. Still, non jar files won't be loaded.Info taken from official site.

Quote: Class path entries can contain the basename wildcard character *, which is considered equivalent to specifying a list of all the files in the directory with the extension . Jar or .JAR. For example, the class path entry foo/* specifies all JAR files in the directory named foo.

A classpath entry consisting simply of * expands to a list of all the jar files in the current directory. A class path entry that contains * will not match class URL2 match both classes and JAR files in a single directory foo, use either foo;foo/* or foo/*;foo. The order chosen determines whether the classes and resources in foo are loaded before JAR files in foo, or vice versa.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions