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

com.clouway.oauth2.app.AppServer Maven / Gradle / Ivy

The newest version!
package com.clouway.oauth2.app;

import com.clouway.oauth2.exampleapp.OAuthAuthorizationServerModule;
import com.clouway.oauth2.exampleapp.storage.InMemoryModule;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.servlet.GuiceFilter;
import com.google.inject.servlet.GuiceServletContextListener;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.servlet.DefaultServlet;
import org.eclipse.jetty.servlet.ServletContextHandler;

import javax.servlet.DispatcherType;
import java.util.EnumSet;

/**
 * @author Ivan Stefanov 
 */
public class AppServer {
  private final Server server;

  public AppServer(Integer port) {
    server = new Server(port);
  }

  public void start() throws Exception {
    ServletContextHandler context = new ServletContextHandler(ServletContextHandler.SESSIONS);
    context.setContextPath("/");

    context.addServlet(DefaultServlet.class, "/");
    context.addFilter(GuiceFilter.class, "/*", EnumSet.allOf(DispatcherType.class));

    context.addEventListener(new GuiceServletContextListener() {
      @Override
      protected Injector getInjector() {
        return Guice.createInjector(new OAuthAuthorizationServerModule("/r/oauth/login", 60 * 60L), new InMemoryModule());
      }
    });

    server.setHandler(context);
    server.start();

    Runtime.getRuntime().addShutdownHook(new Thread() {
      @Override
      public void run() {
        try {
          server.stop();
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
    });
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy