vote up 2 vote down star

Hi,

I'm trying to load a custom log.properties file when my application is started.

My properties file is in the same package as my main class, so i assumed that the -Djava.util.logging.config.file=log.properties command line parameter should get the properties file loaded.

But the properties are only loaded when i specify a full absolute path to the properties file. Any suggestions how to use a relative path?

Thanks in advance.

flag

2 Answers

vote up 2 vote down check

Java logging doesn't search your whole hard disk for a file; there are very simple rules how files are looked up. You want Java to see that the two files belong to each other but you didn't say so anywhere. Since Java sees no connection between the properties file and your class other than that they are in the same folder on your disk, it can't find the file.

In your case, you do this:

  • Move the file log.properties to the default package (the root folder for your sources)
  • add it directly to the classpath (just like a JAR)
  • You can specify the package in which the file is, replacing "." with "/": -Djava.util.logging.config.file=com/company/package/log.properties
  • You can specify the absolute path
link|flag
Hi, thanks for the answer. I'm just beginning with java, so i don't know a lot about packaging etc. I have a NetBeans default project with a package called javaapplication. The log.properties file is in the default package now. So my command line looks like this: JavaApplication\dist>javaw -Djava.util.logging.config.file=log.properties -jar JavaApplication.jar The properties file still isn't loaded. Could you give me an additional hint please? :) – Adrian Bendel Apr 30 at 8:36
Are you sure it's not loaded? "javaw" swallows all output to System.out and System.err. Try "java" instead (without "w"). Also, you can try to debug the code to see why it's not logging. Just set a breakpoint and "step into" the logging call (instead of "step over"). log4j offers a debug option which makes it print the config as it reads it; I don't know if you can do the same with java.util.logging. – Aaron Digulla May 7 at 14:30
Thanks for the reply. I think i'll stick to runtime configuration through a class, because i can't get the properties file to load with a relative path. – Adrian Bendel May 12 at 7:09
vote up 0 vote down

I would suggest to take a look at the Apache Logging Services Project. To my mind it's far easier to use and to configure. Moreover it's kind of an 'industry standard' in java.

link|flag
1  
I guess it used to be the industry standard, before Sun included the unfortunate java.util.logging in the JDK. Now you have log4j, j.u.l, Jakarta Commons Logging, SLF4J, logback and others. Logging in Java is really messed up :-( – Thilo Apr 30 at 7:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.