/checklistbank-search-ws/src/main/java/org/gbif/checklistbank/search/ws/guice/ChecklistBankSearchWsModule.java

http://gbif-ecat.googlecode.com/ · Java · 68 lines · 39 code · 13 blank · 16 comment · 0 complexity · 7e1df91870bf1696e2c4370b1e1d59bc MD5 · raw file

  1. /*
  2. * Copyright 2011 Global Biodiversity Information Facility (GBIF)
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. * Unless required by applicable law or agreed to in writing, software
  8. * distributed under the License is distributed on an "AS IS" BASIS,
  9. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. * See the License for the specific language governing permissions and
  11. * limitations under the License.
  12. */
  13. package org.gbif.checklistbank.search.ws.guice;
  14. import org.gbif.checklistbank.search.inject.SearchModule;
  15. import org.gbif.ws.filter.JsonpResponseFilter;
  16. import org.gbif.ws.filter.RequestHeaderParamUpdateFilter;
  17. import java.util.HashMap;
  18. import java.util.Map;
  19. import com.google.inject.Guice;
  20. import com.google.inject.Injector;
  21. import com.google.inject.servlet.GuiceServletContextListener;
  22. import com.sun.jersey.api.core.PackagesResourceConfig;
  23. import com.sun.jersey.api.json.JSONConfiguration;
  24. import com.sun.jersey.guice.JerseyServletModule;
  25. import com.sun.jersey.guice.spi.container.servlet.GuiceContainer;
  26. import org.slf4j.Logger;
  27. import org.slf4j.LoggerFactory;
  28. public class ChecklistBankSearchWsModule extends GuiceServletContextListener {
  29. private static class ChecklistBankSearchWsJerseyModule extends JerseyServletModule {
  30. @Override
  31. protected void configureServlets() {
  32. Map<String, String> params = new HashMap<String, String>(2);
  33. // Configure automatic JSON output for Jersey
  34. params.put(JSONConfiguration.FEATURE_POJO_MAPPING, "true");
  35. // Let Jersey look for root resources and Providers automatically
  36. params.put(PackagesResourceConfig.PROPERTY_PACKAGES, "org.gbif.checklistbank.search.ws,org.gbif.ws.provider");
  37. // use jsonp and language header update filter
  38. // use jsonp and language header update filter
  39. params
  40. .put("com.sun.jersey.spi.container.ContainerRequestFilters", RequestHeaderParamUpdateFilter.class.getName());
  41. params.put("com.sun.jersey.spi.container.ContainerResponseFilters", JsonpResponseFilter.class.getName());
  42. serve("/*").with(GuiceContainer.class, params);
  43. }
  44. }
  45. private static final Logger LOG = LoggerFactory.getLogger(ChecklistBankSearchWsModule.class);
  46. @Override
  47. protected Injector getInjector() {
  48. try {
  49. return Guice.createInjector(new SearchModule(), new ChecklistBankSearchWsJerseyModule());
  50. } catch (Exception e) {
  51. LOG.error("Startup of checklistbank-search-ws failed", e);
  52. throw new RuntimeException("Initialization failed. Nothing we can do about it.", e);
  53. }
  54. }
  55. }