Log4j email error “Cannot find java.home ??”

2020-04-07 19:50发布

I'm using log4j under J2SE. I've configured it to use a mailer for a certain type of log event.. When the logger.error triggers I get the following exception:

java.lang.Error: Can't find java.home ??
at sun.net.NetProperties.loadDefaultProperties(NetProperties.java:45)
...
at org.apache.log4j.net.SMTPAppender.sendBuffer(SMTPAppender.java:416)

Anyone run into this before? I have the required mail.jar library included as well.

Any help is appreciated. Thanks, Chris

1条回答
我只想做你的唯一
2楼-- · 2020-04-07 20:09

I looked at the source code of NetProperties and the error basically means what it says. The System property called "java.home" is unset. According to the javadoc for System.getProperties(), that property is set automatically by the JVM to the java installation directory.

The only explanation I can think of is that something in your application or some third-party library you are using has explicitly unset that property. That is obviously a bad thing to do ...

查看更多
登录 后发表回答