Question

I've got Guice configuring Jersey, and it's working pretty well. Here's what I'm doing so far:

import com.google.common.collect.ImmutableMap;
import com.google.inject.Guice;
import com.google.inject.Injector;
import com.google.inject.Singleton;
import com.google.inject.servlet.GuiceServletContextListener;
import com.google.inject.servlet.ServletScopes;
import com.company.app.ejb.lookup.EjbProvider;
import com.company.app.rest.exception.ConditionExceptionMapper;
import com.company.app.rest.exception.InvalidSortExceptionMapper;
import com.company.app.rest.exception.NotFoundExceptionMapper;
import com.sun.jersey.api.json.JSONConfiguration;
import com.sun.jersey.guice.JerseyServletModule;
import com.sun.jersey.guice.spi.container.servlet.GuiceContainer;

/*
From http://randomizedsort.blogspot.com/2011/05/using-guice-ified-jersey-in-embedded.html
 */
public class GuiceServletConfig extends GuiceServletContextListener {
    @Override
    protected Injector getInjector() {
        return Guice.createInjector(new JerseyServletModule() {
            @Override
            protected void configureServlets() {
                install(new EjbProvider());
                install(new JacksonJsonProviderProvider());

                // Must configure at least one JAX-RS resource or the
                // server will fail to start.
                bind(RestApiVersion1.class).in(ServletScopes.REQUEST);
                bind(RestApiVersion2.class).in(ServletScopes.REQUEST);

                bind(ConditionExceptionMapper.class).in(Singleton.class);
                bind(InvalidSortExceptionMapper.class).in(Singleton.class);
                bind(NotFoundExceptionMapper.class).in(Singleton.class);

//                bind(ResourceConfigClass.class).in(Singleton.class);  this does not work :(

                // Route all requests through GuiceContainer
                serve("/*").with(GuiceContainer.class, ImmutableMap.of(JSONConfiguration.FEATURE_POJO_MAPPING, "true"));

            }
        });
    }
}

I've got this ResourceConfigClass that is very simple, it looks like this:

import com.sun.jersey.api.core.PackagesResourceConfig;

import javax.ws.rs.core.MediaType;
import java.util.HashMap;
import java.util.Map;

public class ResourceConfigClass extends PackagesResourceConfig {
    public ResourceConfigClass(String... packages) {    //this constructor needs to be here, do not delete it or else the com.sun.jersey.config.property.packages param can't be passed in.
        super(packages);
    }

    public ResourceConfigClass(Map<String, Object> props) { //this constructor needs to be here, do not delete it or else the com.sun.jersey.config.property.packages param can't be passed in.
        super(props);
    }

    @Override
    public Map<String, MediaType> getMediaTypeMappings() {
        Map<String, MediaType> map = new HashMap<String, MediaType>();
        map.put("xml", MediaType.APPLICATION_XML_TYPE);
        map.put("json", MediaType.APPLICATION_JSON_TYPE);
        return map;
    }
}

But, I can't figure out how to configure Guice to use this ResourceConfigClass I've made. If I bind it, I get this error on startup:

#|2014-06-04T10:11:03.324-0700|SEVERE|glassfish3.1.2|javax.enterprise.system.tools.admin.org.glassfish.deployment.admin|_ThreadID=345;_ThreadName=Thread-2;|Exception while loading the app : java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.google.inject.CreationException: Guice creation errors:

1) Could not find a suitable constructor in com.company.app.rest.resource.ResourceConfigClass. Classes must have either one (and only one) constructor annotated with @Inject or a zero-argument constructor that is not private.
  at com.company.app.rest.resource.ResourceConfigClass.class(ResourceConfigClass.java:13)
  at com.company.app.rest.resource.GuiceServletConfig$1.configureServlets(GuiceServletConfig.java:38)

Before I was using Guice, I could use this class by putting this in my web.xml:

    <init-param>
        <param-name>com.sun.jersey.config.property.resourceConfigClass</param-name>
        <param-value>com.company.app.rest.resource.ResourceConfigClass</param-value>
    </init-param>

I don't know how to set that property in the GuiceServletConfig, though. How do I set the media type mappings when I'm using jersey with guice?

Was it helpful?

Solution

I was able to do it this way:

            serve("/*").with(GuiceContainer.class, ImmutableMap.of(
                    JSONConfiguration.FEATURE_POJO_MAPPING, "true",
                    "com.sun.jersey.config.property.packages", "com.fasterxml.jackson.jaxrs.json",
                    "com.sun.jersey.config.property.resourceConfigClass", "com.company.app.rest.resource.ResourceConfigClass"
            ));

But I found a more direct way to do this:

            serve("/*").with(GuiceContainer.class, ImmutableMap.of(
                    JSONConfiguration.FEATURE_POJO_MAPPING, "true",
                    ResourceConfig.PROPERTY_MEDIA_TYPE_MAPPINGS, "xml:" + MediaType.APPLICATION_XML_TYPE + ",json:" + MediaType.APPLICATION_JSON_TYPE
            ));

Now I don't need the extra ResourceConfigClass class. This format was documented in com.sun.jersey.api.core.ResourceConfig#PROPERTY_MEDIA_TYPE_MAPPINGS

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top