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.
...
3
votes
4answers
7k 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" ...
2
votes
2answers
3k views
slf4j exception with quartz
I am trying to use quartz in a simple example in project. I am getting the following exception, I am not sure what it means...However I updated my slf4j to 1.6.1 in my POM file even then this still ...
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
1answer
726 views
slf4j-log4j12 not packaged by maven with “runtime” scope
I have a project managed by maven with slf4j-api-1.5.8 and log4j-1.2.14 dependencies.
In runtime , slf4j needs slf4j-log4j12-1.5.8.jar to "bridge" output to log4j.
So in pom.xml , I add this ...
2
votes
4answers
1k views
Disabling logging for jetty run from maven
I downloaded a big framework which I need to built from source. The project uses a maven build structure, and includes a demo application which can be viewed with an embedded jetty. Maven plugins ...
0
votes
1answer
284 views
How to make Jetty print logs
My project runs on Wicket+Spring+JPA/Hibernate. When I run it using the command:
mvn jetty:run
I'd like jetty to print logs I make in the code. I have for example the following DAO implemented:
...