Tagged Questions

17
votes
5answers
22k views

Hibernate 3.4 with slf4j and log4j

I'm attempting to upgrade from Hibernate 3.2 to 3.4, which apparently uses slf4j. Our project currently uses log4j. So my assumption is that I should be using the slf4j-log4j12 wrapped implementation. ...
4
votes
1answer
111 views

How to control Hibernate's logging?

I have a hibernate that is configured only programmatically ( I don't have a single XML file ). I just finished writing my own implementation of org.slf4j.Logger. How can I force hibernate to log to ...
4
votes
4answers
8k views

Hibernate, Spring and SLF4J Binding

I'm trying to setup a webapp with maven2 managed dependcies. Here my pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
3
votes
2answers
7k views

Beginning Hibernate 3.5 - Problems with ant task

I'm trying to work through "Beginning Hibernate 3.5", and I've hit an initial snag. When I run ant exportDDL, I get the following error: exportDDL: [htools] Executing Hibernate Tool with a ...
2
votes
2answers
109 views

Maven + SLF4J: Version conflict when using two different dependencies that require two different SLF4J versions

I have a project that use both dependencies independently: BoneCP and Hibernate. But thanks to SLF4J and its version conflicts it does not work because BoneCP requires SLF4J 1.5 and Hibernate requires ...
2
votes
1answer
5k views

Hibernate-annotations 3.4.0.GA and slf4j?

I have a maven project A that use hibernate-annotations 3.4.0.GA which use the slf4j-api version 1.5.5 (checked through the dependency tree in the pom.xml file). Further project A specifies ...
2
votes
4answers
5k views

Hibernate in Servlet causesNoClassDefFoundError: org/slf4j/LoggerFactory

I have a Java (6) application which uses Hibernate (V3.3.2) to read data from HSQLDB, which i build and debug/run with Eclipse (V3.5.1), and it works fine. I then created a GWT (V1.7) Servlet web ...
1
vote
2answers
97 views

Hibernate,Log4j and SLF4j [closed]

i am using log4j and i want to disable hibernate info logging, so here's what i tried, but it doesn't work and i still see the hibernate info logging: 1- log4j.properties: log4j.rootLogger=DEBUG, ...
1
vote
1answer
110 views

hibernate logging

I have an interface that I want Hibernate to log everything to. My curernt configuration is done programmatically, so I don't have any hibernate.properties or hibernate.cfg.xml file. configuration = ...
1
vote
2answers
790 views

Log files not generated with Hibernate and slf4j

In my application I'm using Hibernate, Apache Commons Logging and Log4J. But my log files are not getting generated. Is these because Hibernate uses slf4j? In my classpath I have the following jars. ...
1
vote
2answers
1k views

Problems when data save on database by Hibernate

I'm trying do save data to database by help of Hibernate , in Java. But when ı run codes , ı had lot of problems. Can anyone help me about that? Thanks... My code: package org.ultimania.model; ...
1
vote
2answers
2k views

Maven doesn't resolve hibernate-c3p0's dependency on slf4j

When I include hibernate-c3p0 in my Maven's pom.xml file, I get a runtime NoClassDefFoundError as it can't find org.slf4j.impl.StaticLoggerBinder. It was my impression that Maven would resolve this ...
0
votes
1answer
92 views

Disabling Hibernate log messages in a Spring application

I have configured my pom.xml to include slf4j and bindings to log4j and exclude commons-logging as explained here and disabled Hibernate's own logging as explained here. I can suppress Spring's own ...
0
votes
1answer
479 views

Annotations are deprecated in Hibernate problem

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 ...
0
votes
2answers
588 views

Spring - slf4J : how to automatically log errors and exceptions?

We are using Spring with slf4j and hibernate, I'm trying to figure out a way to log exceptions and errors automatically (i.e without initiating an instance of the debugger in each class), so that it ...
0
votes
2answers
1k views

Hibernate: how do you adjust the default logging level (SJF4J and JDK 1.4 logger)?

I have a JavaSE/Hibernate test app (shell-based). I put the following JARs into the project's lib dir: antlr-2.7.6.jar commons-collections-3.1.jar commons-lang-2.5.jar dom4j-1.6.1.jar ...
0
votes
1answer
2k views

SLF4J: Hibernate3 vs. RESTeasy

In my project i'm using Hibernate3 (depends on slf4j-1.6) and RESTeasy (depends on slf4j-1.5). Both are not compatible and give errors at runtime. SLF4J: The requested version 1.5.8 by your slf4j ...
0
votes
3answers
756 views

Stop Hibernate console output, without log4j

As sad in the title i want to stop Hibernate console output, without using log4j. I have tried to use log4j but i havent got anywhere. What i want is the console INFO outputs to stop. And if i am ...