RESTEasy is very flexible when comes to logging support. It can work with log4j, slf4j and java.util.logging also. Algorithm used to decide that which logging framework needs to be used is: If log4j is in the application’s classpath, log4j will be used If slf4j is in the application’s classpath, slf4j will be used java.util.logging is […]
The post RESTEasy + Tomcat 7 + SLF4J Logging Example appeared first on HowToDoInJava.