All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.ttddyy.dsproxy.support.SystemOutQueryCountLoggingHandlerInterceptor Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package net.ttddyy.dsproxy.support;

/**
 * {@link org.springframework.web.servlet.HandlerInterceptor} to log query metrics to {@link java.lang.System#out}.
 *
 * @author Tadaya Tsuyukubo
 * @since 1.3
 */
public class SystemOutQueryCountLoggingHandlerInterceptor extends AbstractQueryCountLoggingHandlerInterceptor {
    @Override
    protected void writeLog(String logEntry) {
        System.out.println(logEntry);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy