Skip to content

Service for Dropwizard framework to load properties and property updates from a YML file.

Notifications You must be signed in to change notification settings

sbacheld/dropwizard-properties

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Dropwizard Properties Service

Installing

git clone https://github.com/sbacheld/dropwizard-properties
cd dropwizard-properties
mvn install

After installing, add the following to your pom.xml

<dependency>
    <groupId>me.seanbachelder.dropwizard</groupId>
    <artifactId>dropwizard-properties</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

Activating in Dropwizard

import me.seanbachelder.dropwizard.PropertiesBundle;

@Override
public void initialize(Bootstrap<AppConfig> bootstrap) {
    bootstrap.addBundle(new PropertiesBundle());
}

About

Service for Dropwizard framework to load properties and property updates from a YML file.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages