Author: happyman
Forum: 기타 질문/답변
Date: 2014-07-21
http://docs.oracle.com/javase/7/docs/technotes/tools/solaris/classpath.html
위 글을 한번 정독하시길 권장합니다. 몇가지만 뽑아보자면...
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.
=> CLASSPATH entry에 *을 쓰는 경우, 그것은 jar file을 의미합니다. class file은 해당되지 않습니다.
A class path entry that contains * will not match class files. To match both classes and JAR files in a single directory foo, use either foo:foo/* or foo/*:foo.
=> *은 class file을 의미하지 않으므로 foo/* 형태에 class file은 해당하지 않습니다. class file을 포함하려면 /* 없이 folder path 만을 써 주어야 합나다.
다른 사항들도 위 문서를 참조하세요.
Forum: 기타 질문/답변
Date: 2014-07-21
http://docs.oracle.com/javase/7/docs/technotes/tools/solaris/classpath.html
위 글을 한번 정독하시길 권장합니다. 몇가지만 뽑아보자면...
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.
=> CLASSPATH entry에 *을 쓰는 경우, 그것은 jar file을 의미합니다. class file은 해당되지 않습니다.
A class path entry that contains * will not match class files. To match both classes and JAR files in a single directory foo, use either foo:foo/* or foo/*:foo.
=> *은 class file을 의미하지 않으므로 foo/* 형태에 class file은 해당하지 않습니다. class file을 포함하려면 /* 없이 folder path 만을 써 주어야 합나다.
다른 사항들도 위 문서를 참조하세요.