Tagged Questions
0
votes
1answer
37 views
SLF4J as SpringFramework Logger
In one of our projects we are using SLF4J + logback for logging.
Is it possible to configure spring-framework to use SLF4J instead of its default log4j?
0
votes
0answers
39 views
Logback with Spring MVC doesn't work [duplicate]
I developed a webapp with Spring MVC and build it with maven. I want to improve logging using logback sl4j logging framework, but I'm completely new to it.
I modifide my pom.xml this way:
<!-- ...
0
votes
2answers
90 views
Logback logging not working
I've a Spring MVC simple addressbook project build with maven. I want to use Logback for logging, but I'm completely new to it;
first I changed my pom.xml this way:
<!-- Spring 3 dependencies ...
1
vote
1answer
84 views
How to log from Spring MVC
I am trying to log from a controller in Spring MVC but nothing appears. I am using SLF4J with logback. I managed to log from a main class, but after making it a web application it does not log.
I ...
0
votes
0answers
31 views
spring context load gets slf4j NPE
Added later as stackoverflow do not seem to allow me to delete my question.
--> added
This stack trace is very misleading. It turns out the context.xml had a typo accidentally added into a ...
0
votes
0answers
80 views
Log not visible on console using SLF4J
I have 2 java projects. both of them using slf4j for logging. I make a jar of the first project and add it to second project (in the web-inf\lib of the second project). Then I make the war of the ...
0
votes
2answers
200 views
SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”. when running JUnit test
I'm building some test cases with JUnit to test my application, but when I try to run them I get the error:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: See ...
2
votes
2answers
122 views
How to inject SLF4J bindings with Guice?
After a cursory inspection, it seems like SLF4J and Guice (well, any DI framework, really) are sort of conflicting philosophies. SLF4J takes the approach "hey, we won't know until runtime what classes ...
0
votes
3answers
2k views
Maven and Spring - SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”
I'm building a new spring web application which uses maven for dependency management. I am trying to use slf4j-api and slf4j-simple. I added them to my pom file, but when I build I get the error
...
1
vote
1answer
309 views
Setting up Spring MVC using pom.xml, with slfj logging and leaks
Below is what I have in my pom.xml, any comments or improvments? (this is for a spring mvc application)
Do I still need to exclude commons logging to use slf4j?
<!-- Spring -->
...
2
votes
0answers
4k views
java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
SpringSource throws this error when I load my web-application.The exception occurs at the point where I instantiate the logger.
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class ...
0
votes
2answers
191 views
Test case is not running as expected?
I have below config in my pom.xml.
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
...
0
votes
1answer
2k views
How to enable logging of Ehcache
In my Spring + Hibernate project, I was doing logging by SLF4J 1.6.4 with LogBack. Now, I've added Ehcache 2.2.0 (through ehcache-spring-annotations-1.1.3). The caching seems to be working as the ...
0
votes
2answers
682 views
spring aspectj pointcut on logging with slf4j
I'm working with spring 3.0.6. My app has lot of places where logging added (slf4j). Say I need to add some function on every serious error - it will be better for me to catch every call to error ...
1
vote
2answers
3k views
Failed to instantiate SLF4J LoggerFactory on Spring 'mvc-basic' tutorial
I'm trying a Spring 3.x tutorial on Eclipse 3.7 with m2e and Maven Integration for WTP plugins installed.
I converted the above tutorial to Maven Project, but when i deploy the web application i get ...
0
votes
1answer
282 views
Spring-AOP and SLF4J
I'm using Spring-AOP to advise a spring managed bean that extends an abstract class which implements 3 interfaces. There are other spring-managed beans around in the inheritance hierarchy.
I'm trying ...
4
votes
2answers
3k views
How does simply adding slf4j to the pom.xml wrap log4j?
From what I have seen in example spring pom.xml files is that they add a few entries for slf4j and log4j and somehow when you use log4j in your spring application it will be wrapped by slf4j library.
...
1
vote
2answers
1k views
Debugging Bizarre Spring/SLF4J/Jar Issue
I'm using Spring (3.0.5.RELEASE) to create & manage some beans and am getting some very bizarre runtime errors.
The first time I ran the code, I was using slf4j-api-1.5.11, and I got the error ...
0
votes
1answer
659 views
Setting up logging with spring mvc, want to restrict trace/debug to my code only
I finally got log4j setup with spring mvc, my log4j properties looks like:
# Direct log messages to stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
...
1
vote
2answers
247 views
Using Spring to inject different instances of a class based on instantiation hierarchy
I have a class structure along these lines:
public class Worker {
private Parser parser;
private Validator validator;
private Feeder feeder;
//...
}
Parser, Validator and Feeder ...
0
votes
1answer
603 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 ...
4
votes
1answer
545 views
How to use SLF4J to log to two different files based on type of msg..?
i am running a client server program in spring.
i am trying to implement SLF4J + Logback for logging.
Now the thing is my client (which in real life would be a device/sensor) will send me data in ...
7
votes
5answers
2k views
Using java annotation to inject logger dependency
I am using spring with aspect-j annotation support to allow for an @Loggable annotation. This allows automatic logging on a class based on the configuration.
I am wondering if I can somehow use ...
2
votes
3answers
6k views
what's wrong for this error
Spring framework throws
Exception in thread "main" java.lang.NoSuchMethodError: org.slf4j.spi.LocationAwareLogger.log(Lorg/slf4j/Marker;Ljava/lang/String;ILjava/lang/String;Ljava/lang/Throwable;)V
...
2
votes
2answers
2k 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
3answers
403 views
using slf4j to log in spring when I can't get rid of commons-logging
I'm using some a component other than Spring that has a commons-logging dependency.
So, excluding commons-logging from the spring dependency doesn't get rid of it, and so the instructions here aren't ...
1
vote
1answer
499 views
Get parent bean in prototype bean that gets injected
I would like to have a Bean and a SubBean like this:
@Scope(BeanDefinition.SCOPE_PROTOTYPE)
@Component
public class SubBean implements ApplicationContextAware{
private Object parent;
public void ...
1
vote
1answer
620 views
Spring: “SimpleLogger does not seem to be location aware” exception
I'm getting an exception in a Spring app on my first line of code:
ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
I have commons-logging-1.1.1.jar configured as a ...
16
votes
6answers
21k views
How do I configure Spring and SLF4J so that I can get logging?
I've got a maven & spring app that I want logging in. I'm keen to use SLF4J.
I want to put all my config files into a directory {classpath}/config including log4j.xml and then init using a spring ...
1
vote
1answer
684 views
removing commons-logging and using slf4j causes errors in spring
Specifically, I use spring only for configuring my project through ApplicationContext. In my spring xml I load some bean properties through PropertyPlaceholderConfigurer. Whenever in the dependencies ...
5
votes
6answers
5k views
Spring constructor injection of SLF4J logger - how to get injection target class?
I'm trying to use Spring to inject a SLF4J logger into a class like so:
@Component
public class Example {
private final Logger logger;
@Autowired
public Example(final Logger logger) {
...
8
votes
4answers
17k 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" ...