Custom Jetty Filters in Dropwizard

dropwizard, jetty

Solution

Via the Environment class.

https://dropwizard.github.io/dropwizard/manual/core.html#environments

@Override
public void run(MyApplicationConfiguration configuration, Environment environment) {
    environment.servlets().addFilter("Custom-Filter-Name", new MyCustomFilter()).addMappingForUrlPatterns(EnumSet.allOf(DispatcherType.class), true, "/*");
}

You can choose which Dispatch types by changing `EnumSet.allOf(DispatcherType.class)`

Problem

I'm attempting to add a custom header filter in my Dropwizard instance to check to see if the request's version is synced to the Dropwizard instance's version. I see you can use `FilterBuilder` to add jetty `CrossOriginFilters`. However, I am having trouble figuring out how to set a custom filter. Thanks

Original source