This GitHub repository contains a drop-in replacement for Yammer's AssetsBundle class that allows
for a better developer experience. Developers can use the ConfiguredAssetsBundle class anywhere
they would use a AssetsBundle in their Dropwizard applications and take advantage of the ability
to specify redirects for URIs to that loads them from disk instead of the classpath. This allows
developers to edit browser-interpreted files and reload them without needing to recompile source.
<dependency>
<groupId>io.dropwizard-bundles</groupId>
<artifactId>dropwizard-configurable-assets-bundle</artifactId>
<version>1.0.5</version>
</dependency>Implement the AssetsBundleConfiguration:
public class SampleConfiguration extends Configuration implements AssetsBundleConfiguration {
@Valid
@NotNull
@JsonProperty
private final AssetsConfiguration assets = AssetsConfiguration.builder().build();
@Override
public AssetsConfiguration getAssetsConfiguration() {
return assets;
}
}Add the assets bundle:
public class SampleService extends Application<SampleConfiguration> {
public static void main(String[] args) throws Exception {
new SampleService().run(args);
}
@Override
public void initialize(Bootstrap<SampleConfiguration> bootstrap) {
// Map requests to /dashboard/${1} to be found in the class path at /assets/${1}.
bootstrap.addBundle(new ConfiguredAssetsBundle("/assets/", "/dashboard/"));
}
@Override
public void run(SampleConfiguration configuration, Environment environment) {
...
}
}A sample local development config:
assets:
overrides:
# Override requests to /dashboard/${1} to instead look in
# ${working directory}/src/main/resources/assets/${1}
/dashboard: src/main/resources/assets/You can override multiple external folders with a single configuration in a following way:
assets:
overrides:
/dashboard/assets: /some/absolute/path/with/assets/
/dashboard/images: /some/different/absolute/path/with/imagesInstead of defining the resource path to uri path mappings in java code, they also can be specified in the configuration file.
public class SampleService extends Application<SampleConfiguration> {
...
@Override
public void initialize(Bootstrap<SampleConfiguration> bootstrap) {
bootstrap.addBundle(new ConfiguredAssetsBundle());
}
@Override
public void run(SampleConfiguration configuration, Environment environment) {
...
}
}assets:
mappings:
/assets: /dashboard
overrides:
/dashboard/assets: /some/absolute/path/with/assets/
/dashboard/images: /some/different/absolute/path/with/imagesSince 0.8, Dropwizard allows you to add new mimetypes directly to the application context.
public class SampleService extends Application<SampleConfiguration> {
...
@Override
public void run(SampleConfiguration configuration, Environment environment) {
environment
.getApplicationContext()
.getMimeTypes()
.addMimeMapping("mp4", "video/mp4");
}
}However if you want to override a pre-existing mime type, or add them dynamically, you can do so with your assets configuration.
assets:
mimeTypes:
woff: application/font-woffYou can map different folders to multiple top-level directories if you wish.
Either in java code
public class SampleService extends Application<SampleConfiguration> {
...
@Override
public void initialize(Bootstrap<SampleConfiguration> bootstrap) {
bootstrap.addBundle(new ConfiguredAssetsBundle(
ImmutableMap.<String, String>builder()
.put("/assets/", "/dashboard/")
.put("/data/", "/static-data/")
.build()
));
}
}or either in the configuration file
assets:
mappings:
/assets: /dashboard
/data: /static-data
overrides:
...