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

com.github.zhengframework.webjars.WebjarsModule Maven / Gradle / Ivy

package com.github.zhengframework.webjars;

import com.github.zhengframework.configuration.Configuration;
import com.github.zhengframework.configuration.ConfigurationAware;
import com.github.zhengframework.configuration.ConfigurationBeanMapper;
import com.github.zhengframework.web.PathUtils;
import com.google.common.base.Preconditions;
import com.google.inject.servlet.ServletModule;
import java.util.Collections;
import java.util.Map;
import javax.inject.Singleton;

public class WebjarsModule extends ServletModule implements ConfigurationAware {

  private Configuration configuration;

  @Override
  protected void configureServlets() {
    Preconditions.checkArgument(configuration != null, "configuration is null");
    Map configMap = ConfigurationBeanMapper
        .resolve(configuration, WebjarsConfig.class);
    WebjarsConfig webjarsConfig = configMap.getOrDefault("", new WebjarsConfig());
    bind(WebjarsConfig.class).toInstance(webjarsConfig);
    bind(WebjarsServlet.class).in(Singleton.class);
    String path = webjarsConfig.getBasePath();
    path = PathUtils.fixPath(path);
    Map initParams = Collections
        .singletonMap("disableCache", "" + webjarsConfig.isDisableCache());
    if (path == null) {
      serve("/webjars/*").with(WebjarsServlet.class, initParams);
    } else {
      serve(path + "/*").with(WebjarsServlet.class, initParams);
    }
  }

  @Override
  public void initConfiguration(Configuration configuration) {
    this.configuration = configuration;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy