up vote 4 down vote favorite
share [g+] share [fb]

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.

link|improve this question

75% accept rate
feedback

4 Answers

up vote 3 down vote accepted

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|improve this answer
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? :) – abp Apr 30 '09 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 '09 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. – abp May 12 '09 at 7:09
feedback

You can dynamically load java.util.logging properties files from a relative path very easily. This is what I put inside a static {} block in my main method. Put your logging.properties file in the default package and you can access it very easily with the following code.

final InputStream inputStream = Main.class.getResourceAsStream("/logging.properties");
try
{
    LogManager.getLogManager().readConfiguration(inputStream);
}
catch (final IOException e)
{
    Logger.getAnonymousLogger().severe("Could not load default logging.properties file");
    Logger.getAnonymousLogger().severe(e.getMessage());
}
link|improve this answer
feedback

util logging does not load from classpath, it needs an absolute path which is why other logging packages like log4j are far easier to configure and better for web apps where it's a pain to get abs paths.

this is not explained at all in the java.util.logging.LogManager doco.

link|improve this answer
feedback

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|improve this answer
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 '09 at 7:24
feedback

Your Answer

 
or
required, but never shown

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