Package com.changestuffs.server.guice

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

package com.changestuffs.server.guice;

import org.apache.bval.guice.ValidationModule;

import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.servlet.GuiceServletContextListener;

public class GuiceServletConfig extends GuiceServletContextListener {

  @Override
  public Injector getInjector() {
    return Guice.createInjector(new ServerModule(), new DispatchServletModule(), new ValidationModule(), new AopModule(), new MyModule());
  }
 
}
TOP

Related Classes of com.changestuffs.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.