java -cp
java -cp /home/hdp/log4jTest/log4j-1.2.17.jar:/home/hdp/log4jTest/testLog.jar:/home/hdp/log4jTest/conf: test.TestLog
要执行test.TestLog类。 test是包名。
test.TestLog类在/home/hdp/log4jTest/testLog.jar中。
依赖log4j-1.2.17.jar,所以在-cp中添加了这两个jar包。
-cp中的最后一项 /home/hdp/log4jTest/conf: ,是将/home/hdp/log4jTest/conf目录下的配置文件加到类路径中。
/home/hdp/log4jTest/conf中 我放置了log4j.properties。
注意啊!!!一定要写成conf: 不能写成conf/*:
所以一般程序将log4j的配置文件放置在jar包外面的。不需要打包到自己的jar包的。比如zookeeper就是这么做的。