What It Is
Motivation
How To Build Your Config
How To Import An Existing Config
Usage example
Presentation
Java Doc
The Config-Builder makes use of annotations and reflections in order to build configured instances of custom classes.
Its features include
- defining default values and loading of values from properties files, system properties, the command line and others
- configuring of not only String values, but fields of arbitrary types
- configuring of collection fields
- merging configs
- JSR380 validation of the instances it builds.
Many Java projects include one or more classes that store configuration values and objects. These often come from properties files, system properties and environment variables or command line arguments, which requires the developer to implement the finding and loading of files, parsing the values etc. for every new project.
This is a time-consuming process, so why not spare this time and get started much faster? Although there are libraries that implement the loading of properties files and some possibilities of building configured objects e.g. in Spring, there hasn't been a really easy-yet-powerful solution so far.
This is where the Config-Builder comes in. It doesn't require any additional classes besides the config itself. Instead of manually implementing the loading of values from files etc., building a config can now be easily done by using annotations.
public class Config {
private String someNumber;
private Collection<PidFix> stringCollection;
// ...
}
If you want the Config-Builder to get values from properties files,
you can specify the files' basenames (no file extension or path) by
annotating your config class with the @PropertiesFiles
annotation.
You can specify multiple basenames like this:
@PropertiesFiles({file1,file2,...})
By default, properties files are loaded using the PropertyLoader
's default config, which
searches for files in the current directory, the ContextClassLoader and the user's home directory.
You can manually specify the search locations by annotating your config class with the @PropertyLocations
annotation, e.g.
@PropertyLocations(directories = {"/home/user"}, resourcesForClasses={MyApp.class}, contextClassLoader = true)
The PropertyLoader
also searches for files with the default suffixes, i.e. the user name, local host names and 'override'.
You can manually set the suffixes by annotating your config class with the @PropertySuffixes
annotation like this:
@PropertySuffixes(extraSuffixes = {"tngtech","myname"}, hostNames = true)
The default file extensions are .properties
and .xml
. You can replace the .properties file extension with your own
by annotating your config class with
@PropertyExtension("fileextension")
There are five annotations that specify where the String value that configures a field comes from:
@DefaultValue("value")
@SystemPropertyValue("property.key")
@EnvironmentVariableValue("ENV_VAR")
@PropertyValue("property.key")
@CommandLineValue(shortOpt = "o", longOpt = "option", hasArg=true)
By default, when parsing the annotations, priority is as above, i.e. any value found on the command line overwrites a value found in properties, which in turn overwrites the environment variable value and so on. This order can be customized, see §5 (Change the order in which annotations are processed).
Fields don't have to be Strings. You can configure collection fields or even any type you wish (or a collection of that type).
Some simple transformers are included and used by default, e.g. a String will automatically be converted to an integer, a boolean value, an enum value, or even a collection as needed.
If you need more complex transformers, you can also implement your own by extending the TypeTransformer
class, and specifying them in the @TypeTransformers
annotation.
Finally, the original value may not always be a String. To support this case, the annotation takes a list of possible transformers, and the one with the right source and target types is automatically detected and used.
Resolved values are usually logged at debug level.
If this is not desired, just add the @DoNotLogValue
annotation to the field containing your sensitive data.
After an instance of your config is built, it is automatically validated. You can either use JSR validation annotations
(@NotNull
, ...) or define a custom validation method:
@Validation
private void validate() {
// ...
}
You can change the order in which annotations are processed globally or individually for each field.
To specify a global order for parsing ValueExtractorAnnotation
annotations, annotate the class with the
@LoadingOrder
annotation. To change the order for a certain field, annotate the field.
The @LoadingOrder
may only contain the following values:
@LoadingOrder({PropertyValue.class, EnvironmentVariableValue.class, SystemPropertyValue.class, CommandLineValue.class, ImportedValue.class, DefaultValue.class})
To specify your own error messages file (which is loaded by the PropertyLoader
with the same settings as other the properties files),
annotate the class with the @ErrorMessageFile
annotation:
@ErrorMessageFile("myErrorMessages")
Config myConfig = ConfigBuilder.on(Config.class).withCommandLineArgs(args).build();
If you already have an instance of your config class and want to only configure the fields which are not null
, use
Config newConfig = ConfigBuilder.on(Config.class).withCommandLineArgs(args).withImportedConfiguration(existingConfig).build();
Note that primitive type fields are always overwritten!
Since primitive types can not be checked for null
, it is not possible to check whether primitive fields of an existing config
have already been set. Hence, for the moment, primitives are always overwritten.
Say you have a config that looks like this:
@PropertiesFiles("config") // Uses "config.properties", "config.<hostname>.properties", etc.
@PropertyLocations(directories = {"/home/user"}, contextClassLoader = true)
@PropertySuffixes(extraSuffixes = {"tngtech","myname"}, hostNames = true)
public class Config {
public static class StringToPidFixTransformer extends TypeTransformer<String,PidFix> {
@Override
public PidFix transform(String input) {
// ...
}
}
// default false, true if the option is present
@CommandLineValue(shortOpt="t", longOpt="test", hasArg=false) // this is a flag argument
private boolean runInTestMode;
@DefaultValue("3") // values are automatically be converted to primitive types
@CommandLineValue(shortOpt="rl", longOpt="runLevel", hasArg=true)
private int runLevel;
@EnvironmentVariableValue("PATH")
@PropertyValue("path") // maps to the key "path" in the properties file
private String path;
@SystemPropertyValue("user.name") // maps to the field "user.name" in the system properties
@NotEmpty("username.notEmpty") // JSR-303 validation (Field should not be empty)
private String userName;
@TypeTransformers(StringToPidFixTransformer.class)
@CommandLineValue(shortOpt="pc", longOpt="pidFixCollection", hasArg=true)
private Collection<PidFix> pidFixCollection;
@TypeTransformers(StringToPidFixTransformer.class)
@CommandLineValue(shortOpt="p", longOpt="pidFix", hasArg=true)
private PidFix pidFix;
@Validation
private void validate() {
// ...
}
//...
}
To build a configured instance, simply call
Config myConfig = ConfigBuilder.on(Config.class).withCommandLineArgs(args).build();
A sample presentation can be found at http://tng.github.io/config-builder
Full javadoc of the code can be found here http://tng.github.io/config-builder/javadoc
Please have a look at CONTRIBUTING.md