I'm trying to code some hibernate examples, and I've found this :
AnnotationConfiguration config = new AnnotationConfiguration();
And Eclipse is saying : Deprecated
Also when I run the Application, I get this :
SLF4J: slf4j-api 1.6.x (or later) is incompatible with this binding.
SLF4J: Your binding is version 1.5.5 or earlier.
SLF4J: Upgrade your binding to version 1.6.x. or 2.0.x
I've used this two packages of Hibernate :
hibernate-annotations-3.4.0.GA
& hibernate-distribution-3.6.5.Final-dist
How can Solve this thing.
Thanks