My application is to be deployed on both tcServer and WebSphere 6.1. This application uses ehCache and so requires slf4j as a dependency. As a result I've added the slf4j-api.jar (1.6) jar to my war file bundle.

The application works fine in tcServer except for the following error: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

However, when I deploy in WebSphere I get a java.lang.NoClassDefFoundError: org.slf4j.impl.StaticLoggerBinder.

I've checked the classpaths of both application servers and there is no other slf4j jar.

Anyone any ideas what may be happening here?

link|improve this question

75% accept rate
Did you solve it by any chance? – prasann Mar 28 at 5:44
No, never resolved it unfortunately – DJoyce Mar 28 at 22:17
feedback

4 Answers

In the Websphere case, you have an older version of slf4j-api.jar, 1.4.x. or 1.5.x lying around somewhere. The behavior you observe on tcServer, that is fail-over to NOP, occurs on slf4j versions 1.6.0 and later. Make sure that you are using slf4j-api-1.6.x.jar on all platforms and that no older version of slf4j-api is placed on the class path.

link|improve this answer
Thanks, I've checked my WebSphere 6.1 classpath and I do not see any other version of slf4j e.g. I did a search on my WebSphere filesystem for *slf4j*jar and I only got my 1.6 version returned. Do you know if WebSphere comes packaged with slf4j? – DJoyce Sep 20 '11 at 18:26
Anything is possible but I'd be very surprised if WebSphere came bundled with slf4j-api. Weld bundles slf4j-api.jar. Are you using Weld? – Ceki Sep 21 '11 at 21:15
feedback

You need to add following jar file in your classpath, if you don't have please download it.

slf4j-simple-1.6.2.jar

Please refer

http://www.slf4j.org/codes.html#multiple_bindings
link|improve this answer
But I don't have that jar on my tcServer classpath, that is what confuses me. I don't understand how I don't need an additional jar in tcServer but do in WebSphere – DJoyce Sep 14 '11 at 20:21
feedback

I had the same issue with WebSphere 6.1. As Ceki pointed out, there were tons of jars that WebSphere was using and one of them was pointing to a older version of slf4j.

The No-Op rollback happens only with slf4j -1.6+ so anything older than that will throw an exception and halts your deployment.

There is a documentation in SLf4J site to resolve this. I followed that and added slf4j-simple-1.6.1.jar to my aplication along with slf4j-api-1.6.1.jar which i already had.

This solved my issue. Hope it helps for someone who faces this issue.

link|improve this answer
feedback

put file slf4j-log4j12-1.6.4.jar in the classpath will do the trick.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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