-
Notifications
You must be signed in to change notification settings - Fork 41k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Log stack trace properly when context initialization fails #14187
Comments
I am not sure I understand what you mean by that. This issue tracker is not the right place to discuss a Spring Framework change though. |
It's a reaction to:
The commit was fixing a (for me) non-existent issue and made investigating initialization failures more difficult. Since the issue mentioned Spring Boot I reported it here but I can move it to Spring Framework if you think that's better. |
That issue is 3 years old, I am not following. We always prefer issues over code in text or basic description. I've created an empty project with what you have indicated and I got the following:
Please share a minimal sample (github repo or link) that reproduces the problem. |
Thanks, your output helped. I tracked my issue all the way to method I guess there must be something wrong with my logging configuration so we can close this. Let me know if you have any ideas what could cause this issue. |
Came across this issue and found that this occurs when 2019-02-05 02:49:02.828 WARN 70219 --- [ restartedMain] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'someBean' defined in file ... Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [com.mycompany.SomeBean]: Factory method 'factoryMethod' threw exception; nested exception is java.lang.IllegalArgumentException: The Real Exception Cause and no stack trace. Indeed, as @vojtapol reported, in This caused me to come across #12457 and sure enough, I had <dependency>
<groupId>commons-beanutils</groupId>
<artifactId>commons-beanutils</artifactId>
<version>1.9.3</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency> And I am now getting full stack traces in my logs. Also relevant: that issue seems to indicate that this is fixed in Spring Boot 2.1, I am targeting Boot 2.0.6. |
Also came across this issue. For me, <dependency>
<groupId>commons-validator</groupId>
<artifactId>commons-validator</artifactId>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency> But despite that I still not getting full stack traces in my logs (even if the debugger showed that the logger was correct this time)... In fact my project uses async log4j logger and logs were not flush at shutdown... So the process exited before printing the exception. I fixed it by flushing the logger on shutdown: System.setProperty("Log4jContextSelector", "org.apache.logging.log4j.core.async.AsyncLoggerContextSelector");
Runtime.getRuntime().addShutdownHook(new Thread(() -> {
LoggerContext LoggerContext = LogManager.getContext();
if (LoggerContext instanceof AsyncLoggerContext) {
((AsyncLoggerContext) LoggerContext).stop();
}
})); (not caused by spring but I prefer to comment here in case it would help someone else) |
Stack trace is logged as one line when an exception happens during context initialization. This makes it difficult to read and it can not be formatted by log patterns.
I am using default Spring Boot configuration with no logging properties set.
To reproduce:
Add this line in any bean constructor:
if (true) throw new RuntimeException();
Result:
I even tracked down the commit that caused this issue:
spring-projects/spring-framework@cdf6eb9
I propose to revert this commit. I have never seen exceptions being duplicated in my logs before.
The text was updated successfully, but these errors were encountered: