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

org.gwizard.web.WebModule Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package org.gwizard.web;

import com.google.inject.servlet.ServletModule;
import org.gwizard.services.ServicesModule;
import lombok.EqualsAndHashCode;

/**
 */
@EqualsAndHashCode(callSuper=false, of={})	// makes installation of this module idempotent
public class WebModule extends ServletModule {
	@Override
	protected void configureServlets() {
		install(new ServicesModule());

		bind(WebServerService.class).asEagerSingleton();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy