use of de.thomaskrille.dropwizard_template_config.TemplateConfigBundle in project microservices by pwillhan.
the class ServiceApplication method initialize.
@Override
public void initialize(Bootstrap<ServiceConfiguration> bootstrap) {
bootstrap.addBundle(new TemplateConfigBundle());
initializeViews(bootstrap);
bootstrap.addBundle(new SwaggerAssetsBundle(this::getPublicSwagger));
initializeDependencyInjection(bootstrap);
}
Aggregations