Package com.ursu.server.guice

Source Code of com.ursu.server.guice.GuiceServletConfig

package com.ursu.server.guice;

import com.google.inject.servlet.GuiceServletContextListener;
import com.google.inject.Injector;
import com.google.inject.Guice;
import com.ursu.server.guice.ServerModule;
import com.ursu.server.guice.DispatchServletModule;

public class GuiceServletConfig extends GuiceServletContextListener {

  @Override
  protected Injector getInjector() {
    return Guice
        .createInjector(new ServerModule(), new DispatchServletModule());
  }
}
TOP

Related Classes of com.ursu.server.guice.GuiceServletConfig

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.