Gili
Gili

Reputation: 90150

Dropwizard: Setting servlet context parameters

Given the following web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
    <filter>
        <filter-name>Guice Filter</filter-name>
        <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>Guice Filter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>
    <listener>
        <listener-class>com.foo.JerseyContextListener</listener-class>
    </listener>
    <context-param>
        <param-name>module</param-name>
        <param-value>com.foo.MainModule</param-value>
    </context-param>
    <session-config>
        <session-timeout>
            30
        </session-timeout>
    </session-config>
</web-app>

How do I tell DropWizard to set "module" servlet context parameter to "com.foo.MainModule"?

Configuration.getHttpConfiguration().getContextParameters() always returns an empty list. Are we supposed to extend this class?

Upvotes: 4

Views: 3911

Answers (2)

Michael Fairley
Michael Fairley

Reputation: 13218

You can set it in your configuration file:

- http:
  - contextParameters:
    - module: com.foo.MainModule

Upvotes: 5

Gili
Gili

Reputation: 90150

It seems you need override Configuration.http:

public class MyConfiguration extends Configuration
{
    public MyConfiguration()
    {
        this.http = new HttpConfiguration()
        {
            @Override
            public ImmutableMap<String, String> getContextParameters()
            {
                return ImmutableMap.<String, String>builder().put("module", MainModule.class.getName()).
                    build();
            }
        };
    }
}

Upvotes: 1

Related Questions