com.scmspain.karyon.accesslog.module.AccessLogModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karyon2-accesslog Show documentation
Show all versions of karyon2-accesslog Show documentation
This module add an Interceptor to Karyon so that log all requests.
The newest version!
package com.scmspain.karyon.accesslog.module;
import com.google.gson.GsonBuilder;
import com.google.inject.AbstractModule;
public class AccessLogModule extends AbstractModule {
@Override
protected void configure() {
bind(GsonBuilder.class).asEagerSingleton();
}
}